# HG changeset patch # User Jeff Hammel # Date 1294550657 28800 # Node ID 0d5fac58b1a8b66e2a6236f0ceef482a1907bd64 # Parent 0300ed78d6309ea64ca73ed8c370a787d35436a3 add a template for doctests diff -r 0300ed78d630 -r 0d5fac58b1a8 makeitso/python_package/tests/doctest.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/makeitso/python_package/tests/doctest.txt Sat Jan 08 21:24:17 2011 -0800 @@ -0,0 +1,10 @@ +Test ${project} +=============== + +The obligatory imports: + + >>> import ${package} + +Run some tests. This test will fail, please fix it: + + >>> assert True == False diff -r 0300ed78d630 -r 0d5fac58b1a8 makeitso/python_package/tests/test.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/makeitso/python_package/tests/test.py Sat Jan 08 21:24:17 2011 -0800 @@ -0,0 +1,19 @@ +#!/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 = [ test for test in os.listdir(directory) + if test.endswith('.txt') ] + for test in tests: + doctest.testfile(test, extraglobs=extraglobs, raise_on_error=True) + +if __name__ == '__main__': + run_tests()