summaryrefslogtreecommitdiffstats
path: root/tests/other/test_configparser.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/other/test_configparser.py')
-rw-r--r--tests/other/test_configparser.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/other/test_configparser.py b/tests/other/test_configparser.py
index 09b686738..7f34e64d3 100644
--- a/tests/other/test_configparser.py
+++ b/tests/other/test_configparser.py
@@ -31,6 +31,9 @@ class TestConfigParser():
assert isinstance(config.config, dict)
assert isinstance(values, dict)
+ def test_get(self):
+ assert self.config.getSection("general")[0].config
+
@raises(KeyError)
def test_invalid_config(self):
print self.config["invalid"]["config"]