no more __init__ created for now
[sfa.git] / tests / testRecord.py
1 import unittest
2 import xmlrpclib
3 from geni.trust.certificate import *
4 from geni.trust.gid import *
5 from geni.trust.config import *
6 from geni.util.record 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()