[Zodb-checkins] SVN: ZODB/trunk/src/ZODB/tests/Synchronization.py Removed some commented out (and almost certainly bogus) tests.

Jim Fulton jim at zope.com
Sat Oct 25 20:36:23 EDT 2008


Log message for revision 92561:
  Removed some commented out (and almost certainly bogus) tests.
  

Changed:
  U   ZODB/trunk/src/ZODB/tests/Synchronization.py

-=-
Modified: ZODB/trunk/src/ZODB/tests/Synchronization.py
===================================================================
--- ZODB/trunk/src/ZODB/tests/Synchronization.py	2008-10-26 00:36:20 UTC (rev 92560)
+++ ZODB/trunk/src/ZODB/tests/Synchronization.py	2008-10-26 00:36:22 UTC (rev 92561)
@@ -71,9 +71,6 @@
 
 class SynchronizedStorage:
 
-##    def verifyCommitting(self, callable, *args):
-##        self.assertRaises(StorageTransactionError, callable *args)
-
     def verifyNotCommitting(self, callable, *args):
         self.assertRaises(StorageTransactionError, callable, *args)
 
@@ -91,13 +88,6 @@
         self.verifyWrongTrans(self._storage.store,
                               OID, SERIALNO, "", "", Transaction())
 
-##    def checkNewOidNotCommitting(self):
-##        self.verifyNotCommitting(self._storage.new_oid)
-
-##    def checkNewOidWrongTrans(self):
-##        self.verifyWrongTrans(self._storage.new_oid)
-
-
     def checkAbortNotCommitting(self):
         self._storage.tpc_abort(Transaction())
 



More information about the Zodb-checkins mailing list