diff tests/unit.py @ 0:bdc039cb1f2e

wth
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 24 Sep 2013 13:13:35 -0700
parents
children 546695da018c
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/unit.py	Tue Sep 24 13:13:35 2013 -0700
@@ -0,0 +1,21 @@
+#!/usr/bin/env python
+
+"""
+unit tests
+"""
+
+import os
+import sys
+import unittest
+
+# globals
+here = os.path.dirname(os.path.abspath(__file__))
+
+class commitwatcherUnitTest(unittest.TestCase):
+
+    def test_commitwatcher(self):
+        pass
+
+if __name__ == '__main__':
+    unittest.main()
+