Mercurial > mozilla > hg > talosnames
view tests/unit.py @ 67:277b167060e5
add a link to bug
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 04 Sep 2012 09:25:46 -0700 |
parents | 3e1f069ac608 |
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 talosnamesUnitTest(unittest.TestCase): def test_talosnames(self): pass if __name__ == '__main__': unittest.main()