Revision 9fb473e02db4cefdb9afdecbfb8236424034b1cb authored by Jeremy Low on 23 May 2016, 11:48:59 UTC, committed by Jeremy Low on 23 May 2016, 11:48:59 UTC
1 parent f3a16fa
Raw File
test.py
import unittest

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