Mercurial > hg > IntentMadeManifest
view tests/unit.py @ 7:ad4b3d5ad5f8
note those wacky node folk
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 16 Apr 2013 02:06:58 -0700 |
parents | 67cfeffa0d90 |
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 intentmademanifestUnitTest(unittest.TestCase): def test_intentmademanifest(self): pass if __name__ == '__main__': unittest.main()