Revision ba3ebd43ce3c2831f906a62ac693691c1ed276da authored by bear (Mike Taylor) on 11 July 2016, 20:27:00 UTC, committed by bear (Mike Taylor) on 11 July 2016, 20:27:00 UTC
1 parent 6c41fac
Raw File
test.py
import unittest

if __name__ == '__main__':
    testsuite = unittest.TestLoader().discover('.')
    unittest.TextTestRunner(verbosity=1).run(testsuite)
back to top