Mercurial > hg > abbrev
diff 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 diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/unit.py Sun Mar 02 19:01:54 2014 -0800 @@ -0,0 +1,21 @@ +#!/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() +