view tests/unit.py @ 1:643c1f11ad9b

CLI
author Jeff Hammel <k0scist@gmail.com>
date Mon, 03 Mar 2014 18:33:32 -0800
parents ee1c34d2f1c4
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 abbrevUnitTest(unittest.TestCase):

    def test_abbrev(self):
        pass

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