diff examples/test.py @ 35:7e47ff4b0cd3

started writing tests; what a surprise, everything is broken ;)
author Jeff Hammel <jhammel@mozilla.com>
date Sat, 01 Jan 2011 21:58:34 -0800
parents
children 6b4c8f23192f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/test.py	Sat Jan 01 21:58:34 2011 -0800
@@ -0,0 +1,18 @@
+#!/usr/bin/env python
+
+"""
+doctest runner
+"""
+
+import doctest
+import os
+
+def run_tests():
+    directory = os.path.dirname(os.path.abspath(__file__))
+    extraglobs = {'here': directory}
+    tests =  [ 'doctest.txt' ]
+    for test in tests:
+        doctest.testfile(test, extraglobs=extraglobs, raise_on_error=False)
+
+if __name__ == '__main__':
+    run_tests()