Mercurial > hg > WSGraph
view tests/unit.py @ 13:7459702bf574
mostly spacing fix + comment
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 10 Dec 2012 17:32:14 -0800 (2012-12-11) |
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()