Mercurial > hg > CommitWatcher
view tests/unit.py @ 2:4cb3971d9d9d
commitwatcher/__init__.py commitwatcher/agent.py commitwatcher/main.py setup.py commitwatcher/commit.py commitwatcher/store.py mozbasewatcher.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 26 Sep 2013 21:35:29 -0700 |
parents | bdc039cb1f2e |
children | 546695da018c |
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 commitwatcherUnitTest(unittest.TestCase): def test_commitwatcher(self): pass if __name__ == '__main__': unittest.main()