diff options
author | 2013-03-25 19:12:39 +0100 | |
---|---|---|
committer | 2013-03-25 19:12:39 +0100 | |
commit | b5f66789e70bd105e162470927942c40496cdc92 (patch) | |
tree | 3a762f29008dd7d7c92221eb363f90580f8acb6f /tests/other/test_configparser.py | |
parent | added view type for input fields (diff) | |
download | pyload-b5f66789e70bd105e162470927942c40496cdc92.tar.xz |
simple rendering for settings page
Diffstat (limited to 'tests/other/test_configparser.py')
-rw-r--r-- | tests/other/test_configparser.py | 3 |
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"] |