diff options
author | Jesse Jaggars <jjaggars@redhat.com> | 2012-02-14 09:27:36 -0600 |
---|---|---|
committer | Jesse Jaggars <jjaggars@redhat.com> | 2012-02-14 09:27:36 -0600 |
commit | 80e99a2d290b10ed908320c97ca11874aac422b0 (patch) | |
tree | 80775693e8ff4eb89a9fb37c174f6ea339cda01e /tests/option_tests.py | |
parent | 1132b767fb4d83bb07925641c78223a7388ff3c2 (diff) | |
download | sos-80e99a2d290b10ed908320c97ca11874aac422b0.tar.gz |
adding root_symlink support under tarfiles and fixing getOption behavior
Diffstat (limited to 'tests/option_tests.py')
-rw-r--r-- | tests/option_tests.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/option_tests.py b/tests/option_tests.py index 06f048a4..03804dec 100644 --- a/tests/option_tests.py +++ b/tests/option_tests.py @@ -10,9 +10,13 @@ class GlobalOptionTest(unittest.TestCase): self.commons = { 'global_plugin_options': { 'test_option': 'foobar', + 'baz': None, + 'empty_global': True, }, } self.plugin = Plugin(self.commons) + self.plugin.optNames = ['baz', 'empty'] + self.plugin.optParms = [{'enabled': False}, {'enabled': None}] def test_simple_lookup(self): self.assertEquals(self.plugin.getOption('test_option'), 'foobar') @@ -20,5 +24,11 @@ class GlobalOptionTest(unittest.TestCase): def test_multi_lookup(self): self.assertEquals(self.plugin.getOption(('not_there', 'test_option')), 'foobar') + def test_cascade(self): + self.assertEquals(self.plugin.getOption(('baz')), False) + + def test_none_should_cascade(self): + self.assertEquals(self.plugin.getOption(('empty', 'empty_global')), True) + if __name__ == "__main__": unittest.main() |