Mercurial > hg > CommandParser
annotate tests/unit.py @ 10:a3599e4db9a4
python 2.4 compatability
| author | Jeff Hammel <jhammel@mozilla.com> |
|---|---|
| date | Mon, 02 Apr 2012 10:21:59 -0700 |
| parents | a41537c4284f |
| children |
| rev | line source |
|---|---|
| 0 | 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 commandparserUnitTest(unittest.TestCase): | |
| 15 | |
| 16 def test_commandparser(self): | |
| 17 pass | |
| 18 | |
| 19 if __name__ == '__main__': | |
| 20 unittest.main() | |
| 21 |
