view examples/test.py @ 123:8db34885ebe4

tame that beast called doctest
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 19 May 2011 10:56:16 -0700
parents 6b4c8f23192f
children
line wrap: on
line source

#!/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,
                         optionflags=doctest.ELLIPSIS,
                         extraglobs=extraglobs,
                         raise_on_error=False)

if __name__ == '__main__':
    run_tests()