Mercurial > mozilla > hg > talosnames
view tests/unit.py @ 71:799161f6ae4c
point to updated location of Config.js file
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 10 Jan 2013 11:23:56 -0800 |
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()