Mercurial > hg > CommitWatcher
comparison 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 |
comparison
equal
deleted
inserted
replaced
10:7ae60d2ff1c2 | 11:546695da018c |
---|---|
6 | 6 |
7 import os | 7 import os |
8 import sys | 8 import sys |
9 import unittest | 9 import unittest |
10 | 10 |
11 from commitwatcher import FeedAgentDiff | |
12 | |
11 # globals | 13 # globals |
12 here = os.path.dirname(os.path.abspath(__file__)) | 14 here = os.path.dirname(os.path.abspath(__file__)) |
13 | 15 |
14 class commitwatcherUnitTest(unittest.TestCase): | 16 class CommitWatcherUnitTest(unittest.TestCase): |
15 | 17 |
16 def test_commitwatcher(self): | 18 def test_patch(self): |
17 pass | 19 """test parsing the files from a patch""" |
20 | |
21 files = | |
18 | 22 |
19 if __name__ == '__main__': | 23 if __name__ == '__main__': |
20 unittest.main() | 24 unittest.main() |
21 | 25 |