annotate tests/unit.py @ 6:883c88b13142
commitwatcher/agent.py commitwatcher/store.py mozbasewatcher.py
author |
Jeff Hammel <jhammel@mozilla.com> |
date |
Fri, 27 Sep 2013 13:03:40 -0700 |
parents |
bdc039cb1f2e |
children |
546695da018c |
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 # globals
|
|
12 here = os.path.dirname(os.path.abspath(__file__))
|
|
13
|
|
14 class commitwatcherUnitTest(unittest.TestCase):
|
|
15
|
|
16 def test_commitwatcher(self):
|
|
17 pass
|
|
18
|
|
19 if __name__ == '__main__':
|
|
20 unittest.main()
|
|
21
|