Mercurial > hg > MakeItSo
view makeitso/python_package/tests/test_{{package}}.py @ 193:a42d1aaa81c3
what i meant
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Thu, 08 May 2014 16:55:51 -0700 |
parents | makeitso/python_package/tests/unit.py@e3ba71e7b927 |
children | 2d009a183d53 |
line wrap: on
line source
#!/usr/bin/env python """ unit tests """ import os import sys import unittest # globals here = os.path.dirname(os.path.abspath(__file__)) class {{package}}UnitTest(unittest.TestCase): def test_{{package}}(self): pass if __name__ == '__main__': unittest.main()