Mercurial > hg > MakeItSo
view makeitso/python_package/tests/test_{{package}}.py @ 197:bb57bec165b7
fix errors with template
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 09 Jun 2014 20:25:45 -0700 |
parents | a42d1aaa81c3 |
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()