Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
473cf348
Commit
473cf348
authored
Apr 27, 2001
by
Barry Warsaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure all the tests import Full, Minimal from the bsddb3Storage package
parent
84f2c939
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
lib/python/BDBStorage/tests/BerkeleyTestBase.py
lib/python/BDBStorage/tests/BerkeleyTestBase.py
+2
-2
lib/python/BDBStorage/tests/test_commitlog.py
lib/python/BDBStorage/tests/test_commitlog.py
+1
-1
lib/python/BDBStorage/tests/test_virgin.py
lib/python/BDBStorage/tests/test_virgin.py
+2
-2
lib/python/BDBStorage/tests/test_zodb_simple.py
lib/python/BDBStorage/tests/test_zodb_simple.py
+2
-2
No files found.
lib/python/BDBStorage/tests/BerkeleyTestBase.py
View file @
473cf348
...
...
@@ -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
lib/python/BDBStorage/tests/test_commitlog.py
View file @
473cf348
...
...
@@ -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
...
...
lib/python/BDBStorage/tests/test_virgin.py
View file @
473cf348
...
...
@@ -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
...
...
lib/python/BDBStorage/tests/test_zodb_simple.py
View file @
473cf348
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment