view tests/unit.py @ 0:ee1c34d2f1c4

initial commit
author Jeff Hammel <k0scist@gmail.com>
date Sun, 02 Mar 2014 19:01:54 -0800
parents
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()