Mercurial > mozilla > hg > disparity
diff tests/unit.py @ 0:02b140ae3e78
the dumping ground begins
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Wed, 20 Feb 2013 11:15:11 -0800 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/unit.py Wed Feb 20 11:15:11 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 disparityUnitTest(unittest.TestCase): + + def test_disparity(self): + pass + +if __name__ == '__main__': + unittest.main() +