diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-09-09 15:39:50 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-09-09 15:39:50 +0200 |
commit | 560958b70043ea5b7e0e32d41cb51bd44696d775 (patch) | |
tree | 948384effdf884301f7b4cf07ab8de95a147b600 /tests/test_configparser.py | |
parent | little logo update (diff) | |
download | pyload-560958b70043ea5b7e0e32d41cb51bd44696d775.tar.xz |
new config api
Diffstat (limited to 'tests/test_configparser.py')
-rw-r--r-- | tests/test_configparser.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/test_configparser.py b/tests/test_configparser.py new file mode 100644 index 000000000..29ba9e51b --- /dev/null +++ b/tests/test_configparser.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- + +from collections import defaultdict +from helper.Stubs import Core + +from module.database import DatabaseBackend +from module.config.ConfigParser import ConfigParser + +# TODO +class TestConfigParser(): + + @classmethod + def setUpClass(cls): + cls.db = DatabaseBackend(Core()) + cls.db.manager = cls.db.core + cls.db.manager.statusMsg = defaultdict(lambda: "statusmsg") + cls.config = ConfigParser + + + def test_db(self): + pass + + def test_dict(self): + pass + + def test_config(self): + pass + + def test_userconfig(self): + pass
\ No newline at end of file |