]> gitweb.michael.orlitzky.com - dunshire.git/blob - test/__main__.py
8d88f647376f1d555691c1119b0216399e3c8a29
[dunshire.git] / test / __main__.py
1 #!/usr/bin/env python
2 """
3 An implementation of __main__() that allows us to "run this module."
4 """
5 from test import build_suite, run_suite
6
7 result = run_suite(build_suite())
8
9 if result.wasSuccessful():
10 exit(0)
11 else:
12 exit(1)