Mercurial > hg > CommitWatcher
diff tests/unit.py @ 11:546695da018c
commitwatcher/agent.py tests/unit.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sat, 28 Sep 2013 05:15:59 -0700 |
parents | bdc039cb1f2e |
children | a0ff003319ec |
line wrap: on
line diff
--- a/tests/unit.py Sat Sep 28 05:10:14 2013 -0700 +++ b/tests/unit.py Sat Sep 28 05:15:59 2013 -0700 @@ -8,13 +8,17 @@ import sys import unittest +from commitwatcher import FeedAgentDiff + # globals here = os.path.dirname(os.path.abspath(__file__)) -class commitwatcherUnitTest(unittest.TestCase): +class CommitWatcherUnitTest(unittest.TestCase): - def test_commitwatcher(self): - pass + def test_patch(self): + """test parsing the files from a patch""" + + files = if __name__ == '__main__': unittest.main()