Mercurial > mozilla > hg > disparity
view tests/unit.py @ 4:88de10f30442 default tip
fun
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sat, 22 Jun 2013 10:05:16 -0700 |
parents | 02b140ae3e78 |
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 disparityUnitTest(unittest.TestCase): def test_disparity(self): pass if __name__ == '__main__': unittest.main()