a little nicer wrt pep8
[sfa.git] / tests / testStorage.py
1 import unittest
2 from sfa.trust.gid import *
3 from sfa.util.config import *
4 from sfa.storage.model import RegRecord
5
6 class TestStorage(unittest.TestCase):
7     def setUp(self):
8         pass
9
10     def testCreate(self):
11         r = RegRecord(type='authority',hrn='foo.bar')
12
13 if __name__ == "__main__":
14     unittest.main()