gacks handle test case
[sfa.git] / tests / testRecord.py
1 import unittest
2 import xmlrpclib
3 from record import *
4 from cert import *
5 from gid import *
6 from config import *
7
8 class TestRecord(unittest.TestCase):
9     def setUp(self):
10         pass
11
12     def testCreate(self):
13         r = GeniRecord()
14
15 if __name__ == "__main__":
16     unittest.main()