Mercurial > hg > MakeItSo
view makeitso/python_package/tests/unit.py @ 164:6cd2894bb11c
stub: makeitso/script2package.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 06 Aug 2013 16:24:21 -0700 |
parents | e3ba71e7b927 |
children |
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()