view tests/unit.py @ 17:77fa5ce8072d default tip

bump version
author Jeff Hammel <k0scist@gmail.com>
date Sun, 19 Feb 2017 21:05:55 -0800
parents a41537c4284f
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 commandparserUnitTest(unittest.TestCase):

    def test_commandparser(self):
        pass

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