]> gitweb.michael.orlitzky.com - dunshire.git/blob - test/__main__.py
26dfc57a8d4eb877d1e533707ee0aff7f99a0bb9
[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)