]> git.phdru.name Git - cookiecutter.git/blob - project_template/tests/__init__.py
Radically simplify MANIFEST.in by using global-include
[cookiecutter.git] / project_template / tests / __init__.py
1
2 import unittest
3
4 __all__ = ['TestCase', 'main']
5
6
7 class TestCase(unittest.TestCase):
8     def setUp(self):
9         pass
10
11     def tearDown(self):
12         pass
13
14
15 def main():
16     try:
17         unittest.main(testRunner=unittest.TextTestRunner())
18     except SystemExit, msg:
19         result = msg.args[0]
20     else:
21         result = 0
22     raise SystemExit(result)