diff tests/unit.py @ 11:e00afe2c83bf

stubbing configuration parser
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 26 Mar 2012 09:45:06 -0700
parents b3023ba3c9ca
children cadc9514f60a
line wrap: on
line diff
--- a/tests/unit.py	Mon Mar 26 09:14:04 2012 -0700
+++ b/tests/unit.py	Mon Mar 26 09:45:06 2012 -0700
@@ -8,13 +8,15 @@
 import sys
 import unittest
 
+import example # example configuration to test
+
 # globals
 here = os.path.dirname(os.path.abspath(__file__))
 
 class configurationUnitTest(unittest.TestCase):
 
     def test_configuration(self):
-        pass
+        
 
 if __name__ == '__main__':
     unittest.main()