fix storage test

This commit is contained in:
James Turk 2012-04-13 17:41:14 -04:00
parent 7922ac2da7
commit b164134c2a

View File

@ -8,14 +8,14 @@ from oyster.storage.dummy import DummyStorage
def _simple_storage_test(StorageCls): def _simple_storage_test(StorageCls):
kernel = Kernel(mongo_db='oyster_test') kernel = Kernel(mongo_db='oyster_test')
kernel.doc_classes['default'] = {}
storage = StorageCls(kernel) storage = StorageCls(kernel)
# ensure the class has a storage_type attribute # ensure the class has a storage_type attribute
assert hasattr(storage, 'storage_type') assert hasattr(storage, 'storage_type')
doc = {'_id': 'aabbccddeeff', 'url': 'http://localhost:8000/#test', doc = {'_id': 'aabbccddeeff', 'url': 'http://localhost:8000/#test',
'metadata': {} 'doc_class': 'default', 'metadata': {} }
}
storage_id = storage.put(doc, 'hello oyster', 'text/plain') storage_id = storage.put(doc, 'hello oyster', 'text/plain')
assert storage_id assert storage_id