From: Zack Cerza Date: Mon, 30 Sep 2013 19:21:43 +0000 (-0500) Subject: Add another config test X-Git-Tag: 1.1.0~1847^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f91f792c91713825b64b0fc283fdbba1957bb595;p=teuthology.git Add another config test Signed-off-by: Zack Cerza --- diff --git a/teuthology/test/test_config.py b/teuthology/test/test_config.py index 7493155dc..f94ff35fd 100644 --- a/teuthology/test/test_config.py +++ b/teuthology/test/test_config.py @@ -12,3 +12,8 @@ class TestConfig(object): conf_obj = config.Config() conf_obj._Config__conf['ceph_git_base_url'] = "git://ceph.com/" assert conf_obj.ceph_git_base_url == "git://ceph.com/" + + def test_set_nonstandard(self): + conf_obj = config.Config() + conf_obj.something = 'something else' + assert conf_obj.something == 'something else'