]> gitweb.michael.orlitzky.com - dunshire.git/blob - test/__main__.py
Remove some debug print() statements and fix a copy-paste-o in the tests.
[dunshire.git] / test / __main__.py
1 """
2 An implementation of __main__() that allows us to "run this module."
3 """
4 from test import build_suite, run_suite
5
6 result = run_suite(build_suite())
7
8 if result.wasSuccessful():
9 exit(0)
10 else:
11 exit(1)