view makeitso/python_package/tests/unit.py @ 178:d6ef91d49609

hopefully do away with some extra variable reentry
author Jeff Hammel <k0scist@gmail.com>
date Sun, 02 Mar 2014 18:45:20 -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()