Mercurial > hg > WSGraph
view tests/unit.py @ 29:2e4ed8e0a103
passing pretend tests
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 13 Dec 2012 18:05:39 -0800 |
parents | cfcfa093e4b4 |
children |
line wrap: on
line source
#!/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()