view martini/tests/test.py @ 4:f7f335561ceb

make special usage strings for each program; again, really should abstract this
author k0s <k0scist@gmail.com>
date Tue, 02 Mar 2010 20:27:25 -0500
parents 3c3522ce6e3a
children
line wrap: on
line source

#!/usr/bin/env python

import doctest
import os

def run_tests():
    directory = os.path.dirname(os.path.abspath(__file__))
    tests =  [ test for test in os.listdir(directory) if test.endswith('.txt') ]

    for test in tests:
        doctest.testfile(test)

if __name__ == '__main__':
    run_tests()