# HG changeset patch # User Jeff Hammel # Date 1332869783 25200 # Node ID 056280e7a6ea9632d06ddb8cda52f711a0869b5b # Parent 3c91bf85adb596af6d6bba9d197150b5b60bacfe stub munging configuration diff -r 3c91bf85adb5 -r 056280e7a6ea tests/unit.py --- a/tests/unit.py Tue Mar 27 10:29:36 2012 -0700 +++ b/tests/unit.py Tue Mar 27 10:36:23 2012 -0700 @@ -80,6 +80,16 @@ missingvalueexception = e self.assertTrue(isinstance(e, configuration.MissingValueException)) + def test_multiple_configurations(self): + """test having multiple configurations""" + + example = ExampleConfiguration() + + # simple override + config1 = {'browser_path': '/home/jhammel/bin/firefox', + 'activeTests': ['ts']} + args1 = ['-e', '/opt/bin/firefox'] + if __name__ == '__main__': unittest.main()