Mercurial > mozilla > hg > MozillaHg
diff tests/unit.py @ 0:1855ba0b873a
initial commit
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 22 Jan 2013 21:30:20 -0800 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/unit.py Tue Jan 22 21:30:20 2013 -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 mozillahgUnitTest(unittest.TestCase): + + def test_mozillahg(self): + pass + +if __name__ == '__main__': + unittest.main() +