Mercurial > hg > WSGraph
diff tests/unit.py @ 0:cfcfa093e4b4
initial commit
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sun, 09 Dec 2012 10:21:43 -0800 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/unit.py Sun Dec 09 10:21:43 2012 -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 wsgraphUnitTest(unittest.TestCase): + + def test_wsgraph(self): + pass + +if __name__ == '__main__': + unittest.main() +