Mercurial > hg > abbrev
view tests/unit.py @ 2:aa57b8f607bd default tip
still doesnt work; lets find another
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Thu, 14 Jul 2016 12:17:35 -0700 |
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()