view tests/unit.py @ 19:74ada5cb1cb8 default tip

more tools
author Jeff Hammel <k0scist@gmail.com>
date Fri, 04 Dec 2015 12:55:31 -0800
parents 67cfeffa0d90
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 intentmademanifestUnitTest(unittest.TestCase):

    def test_intentmademanifest(self):
        pass

if __name__ == '__main__':
    unittest.main()