Mercurial > hg > configuration
annotate tests/unit.py @ 4:92e1b2dd60c8
more stubbing
| author | Jeff Hammel <jhammel@mozilla.com> |
|---|---|
| date | Sat, 24 Mar 2012 22:14:59 -0700 |
| parents | b3023ba3c9ca |
| children | e00afe2c83bf |
| 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 configurationUnitTest(unittest.TestCase): | |
| 15 | |
| 16 def test_configuration(self): | |
| 17 pass | |
| 18 | |
| 19 if __name__ == '__main__': | |
| 20 unittest.main() | |
| 21 |
