Mercurial > hg > CommandParser
view tests/unit.py @ 0:a41537c4284f
stub
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 29 Mar 2012 16:44:35 -0700 |
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 commandparserUnitTest(unittest.TestCase): def test_commandparser(self): pass if __name__ == '__main__': unittest.main()