Commit 473cf348 authored by Barry Warsaw's avatar Barry Warsaw

Make sure all the tests import Full, Minimal from the bsddb3Storage package

parent 84f2c939
......@@ -30,10 +30,10 @@ class BerkeleyTestBase(StorageTestBase):
class MinimalTestBase(BerkeleyTestBase):
import Minimal
from bsddb3Storage import Minimal
ConcreteStorage = Minimal.Minimal
class FullTestBase(BerkeleyTestBase):
import Full
from bsddb3Storage import Full
ConcreteStorage = Full.Full
......@@ -3,7 +3,7 @@
import os
import errno
import unittest
import CommitLog
from bsddb3Storage import CommitLog
# BAW: Lots of other things to check:
# - creating with a named directory
......
......@@ -20,12 +20,12 @@ class InsertMixin:
class FullNewInsertsTest(ZODBTestBase, InsertMixin):
import Full
from bsddb3Storage import Full
ConcreteStorage = Full.Full
class MinimalNewInsertsTest(ZODBTestBase, InsertMixin):
import Minimal
from bsddb3Storage import Minimal
ConcreteStorage = Minimal.Minimal
......
......@@ -51,12 +51,12 @@ class CommitAndRead:
class MinimalCommitAndRead(ZODBTestBase, CommitAndRead):
import Minimal
from bsddb3Storage import Minimal
ConcreteStorage = Minimal.Minimal
class FullCommitAndRead(ZODBTestBase, CommitAndRead):
import Full
from bsddb3Storage import Full
ConcreteStorage = Full.Full
......
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