Mercurial > hg > IntentMadeManifest
comparison tests/unit.py @ 0:67cfeffa0d90
stub from template
| author | Jeff Hammel <jhammel@mozilla.com> |
|---|---|
| date | Sun, 07 Apr 2013 03:07:39 -0700 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:67cfeffa0d90 |
|---|---|
| 1 #!/usr/bin/env python | |
| 2 | |
| 3 """ | |
| 4 unit tests | |
| 5 """ | |
| 6 | |
| 7 import os | |
| 8 import sys | |
| 9 import unittest | |
| 10 | |
| 11 # globals | |
| 12 here = os.path.dirname(os.path.abspath(__file__)) | |
| 13 | |
| 14 class intentmademanifestUnitTest(unittest.TestCase): | |
| 15 | |
| 16 def test_intentmademanifest(self): | |
| 17 pass | |
| 18 | |
| 19 if __name__ == '__main__': | |
| 20 unittest.main() | |
| 21 |
