Mercurial > hg > MakeItSo
view makeitso/python_package/tests/unit.py @ 154:ebc5cfe17d95
order imports and add an add_options() API
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sat, 01 Dec 2012 19:35:46 -0800 |
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()