Mercurial > hg > configuration
diff tests/unit.py @ 0:b3023ba3c9ca
stub
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sat, 24 Mar 2012 11:37:59 -0700 |
parents | |
children | e00afe2c83bf |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/unit.py Sat Mar 24 11:37:59 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 configurationUnitTest(unittest.TestCase): + + def test_configuration(self): + pass + +if __name__ == '__main__': + unittest.main() +