Revision 133e31a01d3ad6a8cdaf3c58a948927fbe2d7969 authored by Jeremy Low on 30 January 2016, 01:19:44 UTC, committed by Jeremy Low on 30 January 2016, 01:19:44 UTC
1 parent 244647a
Raw File
test.py
import unittest

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