def test_get_lookup_not_present(self): config = SQLStorageConfiguration() engine = SQLStorageEngine(config) engine.initialise() store = SQLPersonStore(engine) store.empty() collection = store.get_lookup() self.assertEquals({}, collection)
def test_get_lookup_present(self): config = SQLStorageConfiguration() engine = SQLStorageEngine(config) engine.initialise() store = SQLPersonStore(engine) store.empty() store.add_to_lookup("key1", "value1", overwrite_existing=True) collection = store.get_lookup() self.assertIsNotNone(collection )