Mercurial > hg > MakeItSo
comparison makeitso/python_package/tests/unit.py @ 148:e3ba71e7b927
correct capitalization
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sun, 18 Mar 2012 20:25:51 -0700 |
parents | bdf4049e83ea |
children |
comparison
equal
deleted
inserted
replaced
147:bdf4049e83ea | 148:e3ba71e7b927 |
---|---|
9 import unittest | 9 import unittest |
10 | 10 |
11 # globals | 11 # globals |
12 here = os.path.dirname(os.path.abspath(__file__)) | 12 here = os.path.dirname(os.path.abspath(__file__)) |
13 | 13 |
14 class {{Package}}UnitTest(unittest.TestCase): | 14 class {{package}}UnitTest(unittest.TestCase): |
15 | 15 |
16 def test_{{package}}(self): | 16 def test_{{package}}(self): |
17 pass | 17 pass |
18 | 18 |
19 if __name__ == '__main__': | 19 if __name__ == '__main__': |