summaryrefslogtreecommitdiffstats
path: root/tests/test_configparser.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-09-09 15:39:50 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-09-09 15:39:50 +0200
commit560958b70043ea5b7e0e32d41cb51bd44696d775 (patch)
tree948384effdf884301f7b4cf07ab8de95a147b600 /tests/test_configparser.py
parentlittle logo update (diff)
downloadpyload-560958b70043ea5b7e0e32d41cb51bd44696d775.tar.xz
new config api
Diffstat (limited to 'tests/test_configparser.py')
-rw-r--r--tests/test_configparser.py30
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