Revision d23985828be0b778fb2ed7bd3acbf98108bf0794 authored by Jeremy Low on 11 February 2016, 23:07:51 UTC, committed by Jeremy Low on 11 February 2016, 23:07:51 UTC
1 parent b96b007
Raw File
test.py
import unittest

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