Mercurial > hg > CommitWatcher
annotate 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 |
rev | line source |
---|---|
0 | 1 #!/usr/bin/env python |
2 | |
3 """ | |
4 unit tests | |
5 """ | |
6 | |
7 import os | |
8 import sys | |
9 import unittest | |
10 | |
11
546695da018c
commitwatcher/agent.py tests/unit.py
Jeff Hammel <jhammel@mozilla.com>
parents:
0
diff
changeset
|
11 from commitwatcher import FeedAgentDiff |
546695da018c
commitwatcher/agent.py tests/unit.py
Jeff Hammel <jhammel@mozilla.com>
parents:
0
diff
changeset
|
12 |
0 | 13 # globals |
14 here = os.path.dirname(os.path.abspath(__file__)) | |
15 | |
11
546695da018c
commitwatcher/agent.py tests/unit.py
Jeff Hammel <jhammel@mozilla.com>
parents:
0
diff
changeset
|
16 class CommitWatcherUnitTest(unittest.TestCase): |
0 | 17 |
11
546695da018c
commitwatcher/agent.py tests/unit.py
Jeff Hammel <jhammel@mozilla.com>
parents:
0
diff
changeset
|
18 def test_patch(self): |
546695da018c
commitwatcher/agent.py tests/unit.py
Jeff Hammel <jhammel@mozilla.com>
parents:
0
diff
changeset
|
19 """test parsing the files from a patch""" |
546695da018c
commitwatcher/agent.py tests/unit.py
Jeff Hammel <jhammel@mozilla.com>
parents:
0
diff
changeset
|
20 |
546695da018c
commitwatcher/agent.py tests/unit.py
Jeff Hammel <jhammel@mozilla.com>
parents:
0
diff
changeset
|
21 files = |
0 | 22 |
23 if __name__ == '__main__': | |
24 unittest.main() | |
25 |