Mercurial > hg > CommandParser
diff 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 diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/unit.py Thu Mar 29 16:44:35 2012 -0700 @@ -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 commandparserUnitTest(unittest.TestCase): + + def test_commandparser(self): + pass + +if __name__ == '__main__': + unittest.main() +