annotate tests/unit.py @ 24:e46b4466abac
start a RESTful client; putting this here for now; it could go in model.py as it will inherit from the ABC, but keeping it here avoids a ccertain class of import hell
author |
Jeff Hammel <jhammel@mozilla.com> |
date |
Wed, 12 Dec 2012 18:27:34 -0800 |
parents |
cfcfa093e4b4 |
children |
|
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 wsgraphUnitTest(unittest.TestCase):
|
|
15
|
|
16 def test_wsgraph(self):
|
|
17 pass
|
|
18
|
|
19 if __name__ == '__main__':
|
|
20 unittest.main()
|
|
21
|