diff tests/unit.py @ 28:c516ab813079

begin stubbing serialization/deserialization
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 26 Mar 2012 16:54:37 -0700
parents b39e550402ea
children b27a7cb2dd5b
line wrap: on
line diff
--- a/tests/unit.py	Mon Mar 26 16:40:35 2012 -0700
+++ b/tests/unit.py	Mon Mar 26 16:54:37 2012 -0700
@@ -16,6 +16,8 @@
 class ConfigurationUnitTest(unittest.TestCase):
 
     def test_cli(self):
+        """test command line interface"""
+
         example = ExampleConfiguration()
 
         # parse command line arguments
@@ -32,6 +34,9 @@
         self.assertEqual(example.config['activeTests'], ['ts'])
         self.assertEqual(example.config['browser_path'], '/home/jhammel/bin/firefox')
 
+    def test_configuration_providers(self):
+        """test file-based configuration providers"""
+
 if __name__ == '__main__':
     unittest.main()