[Zope-Checkins] CVS: ZODB3/ZEO/tests - testZEO.py:1.70

Jeremy Hylton jeremy@zope.com
Fri, 30 May 2003 14:17:41 -0400


Update of /cvs-repository/ZODB3/ZEO/tests
In directory cvs.zope.org:/tmp/cvs-serv15509/ZEO/tests

Modified Files:
	testZEO.py 
Log Message:
Add getSerial() method to ZEO to pass new test.

Disable test for ZEO + MappingStorage, since it doesn't support undo.


=== ZODB3/ZEO/tests/testZEO.py 1.69 => 1.70 ===
--- ZODB3/ZEO/tests/testZEO.py:1.69	Thu May 29 14:42:04 2003
+++ ZODB3/ZEO/tests/testZEO.py	Fri May 30 14:17:10 2003
@@ -239,6 +239,7 @@
     def checkCommitLockUndoClose(self): pass
     def checkCommitLockUndoAbort(self): pass
     def checkCommitEmptyVersionInvalidation(self): pass
+    def checkCreationUndoneGetSerial(self): pass
     def checkAbortVersionSerialno(self): pass
     def checkAbortVersionInvalidation(self): pass
     def checkAbortVersionErrors(self): pass
@@ -262,10 +263,10 @@
 
     suite = unittest.TestSuite()
     for klass in test_classes:
-        sub = unittest.makeSuite(klass, 'check')
+        sub = unittest.makeSuite(klass, "check")
         suite.addTest(sub)
     return suite
 
 
 if __name__ == "__main__":
-    unittest.main(defaultTest='test_suite')
+    unittest.main(defaultTest="test_suite")