Revision 662fd153e741661fc9e3671fcd5a548ee37ec7cb authored by Jeremy Low on 23 January 2016, 20:12:00 UTC, committed by Jeremy Low on 23 January 2016, 20:12:00 UTC
1 parent 88ea63e
Raw File
test.py
import unittest

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