add test-runner script
authorTero Marttila <terom@fixme.fi>
Mon, 16 Feb 2009 19:02:39 +0200
changeset 76 2f659ff51c75
parent 75 f94c06cfcc0e
child 77 bef7196f7682
add test-runner script
test.py
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test.py	Mon Feb 16 19:02:39 2009 +0200
@@ -0,0 +1,13 @@
+#!/usr/bin/env python2.5
+
+"""
+    Running for our unittests in tests/
+"""
+
+import unittest
+import tests 
+
+if __name__ == '__main__' :
+    runner = unittest.TextTestRunner()
+    runner.run(tests.all_tests())
+