summaryrefslogtreecommitdiffstats
path: root/tests/test_configparser.py
diff options
context:
space:
mode:
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