[Zodb-checkins] CVS: ZODB/src/ZEO/tests - testZEO.py:1.78 testConnection.py:1.18

Jeremy Hylton jeremy at zope.com
Tue Feb 17 20:13:46 EST 2004


Update of /cvs-repository/ZODB/src/ZEO/tests
In directory cvs.zope.org:/tmp/cvs-serv25077/src/ZEO/tests

Modified Files:
	testZEO.py testConnection.py 
Log Message:
Rename transactionalUndo() to undo().

The old undo was not used by Zope and shouldn't have been used by any
other client.  The newly named undo() is the preferred version of
undo.

XXX DemoStorage didn't implement transactionalUndo, so now it doesn't
implementation undo() at all.  We need to replace it with the demo
storage from ZODB4.

There are a few changes related to ZODB4 removal in this checkin.


=== ZODB/src/ZEO/tests/testZEO.py 1.77 => 1.78 ===
--- ZODB/src/ZEO/tests/testZEO.py:1.77	Wed Dec 24 11:02:00 2003
+++ ZODB/src/ZEO/tests/testZEO.py	Tue Feb 17 20:13:02 2004
@@ -209,11 +209,6 @@
 
 test_classes = [FileStorageTests, MappingStorageTests]
 
-import BDBStorage
-if BDBStorage.is_available:
-    test_classes.append(BDBTests)
-
-
 def test_suite():
     suite = unittest.TestSuite()
     for klass in test_classes:


=== ZODB/src/ZEO/tests/testConnection.py 1.17 => 1.18 ===
--- ZODB/src/ZEO/tests/testConnection.py:1.17	Mon Sep 15 12:29:18 2003
+++ ZODB/src/ZEO/tests/testConnection.py	Tue Feb 17 20:13:02 2004
@@ -130,13 +130,6 @@
                 MappingStorageConnectionTests,
                 MappingStorageTimeoutTests]
 
-import BDBStorage
-if BDBStorage.is_available:
-    test_classes += [BDBConnectionTests,
-                     BDBReconnectionTests,
-                     BDBInvqTests,
-                     BDBTimeoutTests]
-
 def test_suite():
     suite = unittest.TestSuite()
     for klass in test_classes:




More information about the Zodb-checkins mailing list