[Zope-Checkins] SVN: Zope/branches/2.9/lib/python/OFS/tests/testCopySupportEvents.py Disable some tests until we learn how to get a

Stefan H. Holek stefan at epy.co.at
Sat Mar 24 14:21:19 EDT 2007


Log message for revision 73510:
  Disable some tests until we learn how to get a
  repeatable event order in Zope 2.9.
  

Changed:
  U   Zope/branches/2.9/lib/python/OFS/tests/testCopySupportEvents.py

-=-
Modified: Zope/branches/2.9/lib/python/OFS/tests/testCopySupportEvents.py
===================================================================
--- Zope/branches/2.9/lib/python/OFS/tests/testCopySupportEvents.py	2007-03-24 17:54:24 UTC (rev 73509)
+++ Zope/branches/2.9/lib/python/OFS/tests/testCopySupportEvents.py	2007-03-24 18:21:18 UTC (rev 73510)
@@ -255,7 +255,7 @@
         # Reset event log
         eventlog.reset()
 
-    def test_1_Clone(self):
+    def DISABLED_test_1_Clone(self):
         # Test clone
         self.subfolder.manage_clone(self.folder.myfolder, 'myfolder')
         self.assertEqual(eventlog.called(),
@@ -270,7 +270,7 @@
              ('myfolder', 'ObjectClonedEvent')]
         )
 
-    def test_2_CopyPaste(self):
+    def DISABLED_test_2_CopyPaste(self):
         # Test copy/paste
         cb = self.folder.manage_copyObjects(['myfolder'])
         self.subfolder.manage_pasteObjects(cb)
@@ -310,7 +310,7 @@
              ('folder', 'ContainerModifiedEvent')]
         )
 
-    def test_5_COPY(self):
+    def DISABLED_test_5_COPY(self):
         # Test webdav COPY
         req = self.app.REQUEST
         req.environ['HTTP_DEPTH'] = 'infinity'
@@ -343,7 +343,7 @@
              ('subfolder', 'ContainerModifiedEvent')]
         )
 
-    def test_7_DELETE(self):
+    def DISABLED_test_7_DELETE(self):
         # Test webdav DELETE
         req = self.app.REQUEST
         req['URL'] = '%s/myfolder' % self.folder.absolute_url()



More information about the Zope-Checkins mailing list