def testAccessNew(self):
     storage = PropertyStorage()
     storage.properties = [
         {'a': [
              {'b': 1}
             ]
          }]
     self.checkAccess(storage)
 def testAccessOld(self):
     storage = PropertyStorage()
     storage.properties = [
         {"name": 'a',
          "value": [
              {"name": 'b',
               "value": 1}
             ]
          }]
     self.checkAccess(storage)