view makeitso/python_package/tests/test_{{package}}.py @ 203:84be91d59996

STUB: makeitso/python_package/tests/test_{{package}}.py
author Jeff Hammel <k0scist@gmail.com>
date Tue, 12 Aug 2014 14:53:55 -0700
parents 2d009a183d53
children f7f7831f7c8c
line wrap: on
line source

#!/usr/bin/env python

"""
unit tests
"""

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()