Commit 2da45a35 authored by Jeremy Hylton's avatar Jeremy Hylton

Remove checkLen() from BasicStorage and add it to LocalStorage.

parent c23c8125
...@@ -68,14 +68,6 @@ class BasicStorage: ...@@ -68,14 +68,6 @@ class BasicStorage:
# Finish the transaction. # Finish the transaction.
assert newrevid <> revid assert newrevid <> revid
def checkLen(self):
# The length of the database ought to grow by one each time
assert len(self._storage) == 0
self._dostore()
assert len(self._storage) == 1
self._dostore()
assert len(self._storage) == 2
def checkNonVersionStoreAndLoad(self): def checkNonVersionStoreAndLoad(self):
oid = self._storage.new_oid() oid = self._storage.new_oid()
self._dostore(oid=oid, data=7) self._dostore(oid=oid, data=7)
......
class LocalStorage:
"""A single test that only make sense for local storages.
A local storage is one that doens't use ZEO. The __len__()
implementation for ZEO is inexact.
"""
def checkLen(self):
# The length of the database ought to grow by one each time
assert len(self._storage) == 0
self._dostore()
assert len(self._storage) == 1
self._dostore()
assert len(self._storage) == 2
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment