mirror of
https://github.com/nikdoof/tvorganise.git
synced 2025-12-13 06:42:16 +00:00
Moved config parsing out to a custom dict, in prep to handle defaults
This commit is contained in:
@@ -6,6 +6,7 @@ import unittest
|
||||
import os
|
||||
import shutil
|
||||
import tempfile
|
||||
import tvorganise.config
|
||||
|
||||
class testTvOrganise(unittest.TestCase):
|
||||
"""
|
||||
@@ -17,7 +18,7 @@ class testTvOrganise(unittest.TestCase):
|
||||
Simple test to check to see if the config parser actually returns a
|
||||
dict on completion
|
||||
"""
|
||||
dict = self.tvo._get_config('tvorganise.cfg')
|
||||
dict = tvorganise.config.Config('tvorganise.cfg')
|
||||
self.assertTrue(dict)
|
||||
|
||||
def testConfigSettings(self):
|
||||
|
||||
Reference in New Issue
Block a user