Mercurial > hg > MakeItSo
view makeitso/python_package/tests/test_{{package}}.py @ 213:fa496c9e9d73
move away from assert to AssertionError
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Thu, 03 Dec 2015 12:54:17 -0800 |
parents | ee752ac566f1 |
children |
line wrap: on
line source
#!/usr/bin/env python # -*- coding: utf-8 -*- """ unit tests for {{package}} """ import os import sys import tempfile import unittest # globals here = os.path.dirname(os.path.abspath(__file__)) class {{package}}UnitTest(unittest.TestCase): def test_{{package}}(self): tf = tempfile.mktemp() try: # pass pass finally: if os.path.exists(tf): os.remove(tf) if __name__ == '__main__': unittest.main()