Mercurial > hg > MakeItSo
annotate makeitso/python_package/tests/unit.py @ 166:0c95d7f25d9b
makeitso/python.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 24 Sep 2013 13:07:44 -0700 |
parents | e3ba71e7b927 |
children |
rev | line source |
---|---|
147 | 1 #!/usr/bin/env python |
2 | |
3 """ | |
4 unit tests | |
5 """ | |
6 | |
7 import os | |
8 import sys | |
9 import unittest | |
10 | |
11 # globals | |
12 here = os.path.dirname(os.path.abspath(__file__)) | |
13 | |
148 | 14 class {{package}}UnitTest(unittest.TestCase): |
147 | 15 |
16 def test_{{package}}(self): | |
17 pass | |
18 | |
19 if __name__ == '__main__': | |
20 unittest.main() |