Revision 606d148561969769ae6daf1c80c40db48490c495 authored by Jeremy Low on 12 April 2016, 22:44:52 UTC, committed by Jeremy Low on 10 May 2016, 10:08:19 UTC
1 parent 6862d9c
Raw File
test.py
import unittest

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