Revision 9ed8e2732621ec0241c2c4ea13c453c707c47bfd authored by Jeremy Low on 23 January 2016, 18:46:29 UTC, committed by Jeremy Low on 20 March 2016, 01:51:05 UTC
1 parent 22e3ffe
Raw File
test.py
import unittest

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