[Zope-Checkins] SVN: Zope/trunk/src/ Thtere's only one type of interfaces

Hanno Schlichting hannosch at hannosch.eu
Sat Jul 31 18:20:28 EDT 2010


Log message for revision 115299:
  Thtere's only one type of interfaces
  

Changed:
  U   Zope/trunk/src/App/tests/testManagement.py
  U   Zope/trunk/src/App/tests/testPersistentExtra.py
  U   Zope/trunk/src/App/tests/testUndo.py
  U   Zope/trunk/src/OFS/tests/testCopySupport.py
  U   Zope/trunk/src/OFS/tests/testFTPInterface.py
  U   Zope/trunk/src/OFS/tests/testFileAndImage.py
  U   Zope/trunk/src/OFS/tests/testFindSupport.py
  U   Zope/trunk/src/OFS/tests/testFolder.py
  U   Zope/trunk/src/OFS/tests/testOrderSupport.py
  U   Zope/trunk/src/OFS/tests/testOrderedFolder.py
  U   Zope/trunk/src/OFS/tests/testProperties.py
  U   Zope/trunk/src/OFS/tests/testSimpleItem.py
  U   Zope/trunk/src/OFS/tests/testTraverse.py
  U   Zope/trunk/src/Products/PluginIndexes/DateIndex/tests/test_DateIndex.py
  U   Zope/trunk/src/Products/PluginIndexes/DateRangeIndex/tests/test_DateRangeIndex.py
  U   Zope/trunk/src/Products/PluginIndexes/FieldIndex/tests/testFieldIndex.py
  U   Zope/trunk/src/Products/PluginIndexes/KeywordIndex/tests/testKeywordIndex.py
  U   Zope/trunk/src/Products/PluginIndexes/TopicIndex/tests/testTopicIndex.py
  U   Zope/trunk/src/Products/ZCatalog/tests/test_catalog.py
  U   Zope/trunk/src/webdav/interfaces.py
  U   Zope/trunk/src/webdav/tests/testCollection.py
  U   Zope/trunk/src/webdav/tests/testEtagSupport.py
  U   Zope/trunk/src/webdav/tests/testLockItem.py
  U   Zope/trunk/src/webdav/tests/testNullResource.py
  U   Zope/trunk/src/webdav/tests/testResource.py

-=-
Modified: Zope/trunk/src/App/tests/testManagement.py
===================================================================
--- Zope/trunk/src/App/tests/testManagement.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/App/tests/testManagement.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -3,7 +3,7 @@
 
 class TestNavigation(unittest.TestCase):
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from App.interfaces import INavigation
         from App.Management import Navigation
         from zope.interface.verify import verifyClass

Modified: Zope/trunk/src/App/tests/testPersistentExtra.py
===================================================================
--- Zope/trunk/src/App/tests/testPersistentExtra.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/App/tests/testPersistentExtra.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -3,7 +3,7 @@
 
 class TestPersistent(unittest.TestCase):
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from App.interfaces import IPersistentExtra
         from Persistence import Persistent
         from zope.interface.verify import verifyClass

Modified: Zope/trunk/src/App/tests/testUndo.py
===================================================================
--- Zope/trunk/src/App/tests/testUndo.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/App/tests/testUndo.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -3,7 +3,7 @@
 
 class TestUndoSupport(unittest.TestCase):
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from App.interfaces import IUndoSupport
         from App.Undo import UndoSupport
         from zope.interface.verify import verifyClass

Modified: Zope/trunk/src/OFS/tests/testCopySupport.py
===================================================================
--- Zope/trunk/src/OFS/tests/testCopySupport.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/OFS/tests/testCopySupport.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -129,7 +129,7 @@
 
         self._cleanApp()
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from OFS.CopySupport import CopyContainer
         from OFS.CopySupport import CopySource
         from OFS.interfaces import ICopyContainer

Modified: Zope/trunk/src/OFS/tests/testFTPInterface.py
===================================================================
--- Zope/trunk/src/OFS/tests/testFTPInterface.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/OFS/tests/testFTPInterface.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -3,7 +3,7 @@
 
 class TestFTPInterface(unittest.TestCase):
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from OFS.interfaces import IFTPAccess
         from OFS.FTPInterface import FTPInterface
         from zope.interface.verify import verifyClass

Modified: Zope/trunk/src/OFS/tests/testFileAndImage.py
===================================================================
--- Zope/trunk/src/OFS/tests/testFileAndImage.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/OFS/tests/testFileAndImage.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -302,7 +302,7 @@
         self.assertEqual(len(results), 1)
         self.assertEqual(results[0][1], self.file)
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from zope.interface.verify import verifyClass
         from OFS.Image import File
         from webdav.interfaces import IWriteLock
@@ -346,7 +346,7 @@
     def testViewImageOrFile(self):
         pass # dtml method,screw it
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from zope.interface.verify import verifyClass
         from OFS.Image import Image
         from webdav.interfaces import IWriteLock

Modified: Zope/trunk/src/OFS/tests/testFindSupport.py
===================================================================
--- Zope/trunk/src/OFS/tests/testFindSupport.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/OFS/tests/testFindSupport.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -3,7 +3,7 @@
 
 class TestFindSupport(unittest.TestCase):
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from OFS.interfaces import IFindSupport
         from OFS.FindSupport import FindSupport
         from zope.interface.verify import verifyClass

Modified: Zope/trunk/src/OFS/tests/testFolder.py
===================================================================
--- Zope/trunk/src/OFS/tests/testFolder.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/OFS/tests/testFolder.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -3,7 +3,7 @@
 
 class TestFolder(unittest.TestCase):
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from OFS.Folder import Folder
         from OFS.interfaces import IFolder
         from webdav.interfaces import IWriteLock

Modified: Zope/trunk/src/OFS/tests/testOrderSupport.py
===================================================================
--- Zope/trunk/src/OFS/tests/testOrderSupport.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/OFS/tests/testOrderSupport.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -42,7 +42,7 @@
         f.o4 = DummyObject('o4', 'mt2')
         return f
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from OFS.interfaces import IOrderedContainer
         from OFS.OrderSupport import OrderSupport
         from zope.interface.verify import verifyClass

Modified: Zope/trunk/src/OFS/tests/testOrderedFolder.py
===================================================================
--- Zope/trunk/src/OFS/tests/testOrderedFolder.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/OFS/tests/testOrderedFolder.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -3,7 +3,7 @@
 
 class TestOrderedFolder(unittest.TestCase):
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from OFS.interfaces import IOrderedContainer
         from OFS.interfaces import IOrderedFolder
         from OFS.OrderedFolder import OrderedFolder

Modified: Zope/trunk/src/OFS/tests/testProperties.py
===================================================================
--- Zope/trunk/src/OFS/tests/testProperties.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/OFS/tests/testProperties.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -26,7 +26,7 @@
     def _makeOne(self, *args, **kw):
         return self._getTargetClass()(*args, **kw)
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from OFS.interfaces import IPropertyManager
         from OFS.PropertyManager import PropertyManager
         from zope.interface.verify import verifyClass

Modified: Zope/trunk/src/OFS/tests/testSimpleItem.py
===================================================================
--- Zope/trunk/src/OFS/tests/testSimpleItem.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/OFS/tests/testSimpleItem.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -67,7 +67,7 @@
 
 class TestItem_w__name__(unittest.TestCase):
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from OFS.interfaces import IItemWithName
         from OFS.SimpleItem import Item_w__name__
         from zope.interface.verify import verifyClass
@@ -77,7 +77,7 @@
 
 class TestSimpleItem(unittest.TestCase):
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from OFS.interfaces import ISimpleItem
         from OFS.SimpleItem import SimpleItem
         from zope.interface.verify import verifyClass

Modified: Zope/trunk/src/OFS/tests/testTraverse.py
===================================================================
--- Zope/trunk/src/OFS/tests/testTraverse.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/OFS/tests/testTraverse.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -221,7 +221,7 @@
         noSecurityManager()
         SecurityManager.setSecurityPolicy(policy)
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from OFS.interfaces import ITraversable
         from OFS.Traversable import Traversable
         from zope.interface.verify import verifyClass

Modified: Zope/trunk/src/Products/PluginIndexes/DateIndex/tests/test_DateIndex.py
===================================================================
--- Zope/trunk/src/Products/PluginIndexes/DateIndex/tests/test_DateIndex.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/Products/PluginIndexes/DateIndex/tests/test_DateIndex.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -159,7 +159,7 @@
             yr, mo, dy, hr, mn = dt.toZone('UTC').parts()[:5]
         return (((yr * 12 + mo) * 31 + dy) * 24 + hr) * 60 + mn
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from Products.PluginIndexes.interfaces import IDateIndex
         from Products.PluginIndexes.interfaces import IPluggableIndex
         from Products.PluginIndexes.interfaces import ISortIndex

Modified: Zope/trunk/src/Products/PluginIndexes/DateRangeIndex/tests/test_DateRangeIndex.py
===================================================================
--- Zope/trunk/src/Products/PluginIndexes/DateRangeIndex/tests/test_DateRangeIndex.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/Products/PluginIndexes/DateRangeIndex/tests/test_DateRangeIndex.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -81,7 +81,7 @@
         return klass(id, since_field, until_field, caller, extra)
 
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from Products.PluginIndexes.interfaces import IDateRangeIndex
         from Products.PluginIndexes.interfaces import IPluggableIndex
         from Products.PluginIndexes.interfaces import ISortIndex

Modified: Zope/trunk/src/Products/PluginIndexes/FieldIndex/tests/testFieldIndex.py
===================================================================
--- Zope/trunk/src/Products/PluginIndexes/FieldIndex/tests/testFieldIndex.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/Products/PluginIndexes/FieldIndex/tests/testFieldIndex.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -91,7 +91,7 @@
         for k, v in expectedValues:
             assert k in result
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from Products.PluginIndexes.interfaces import IPluggableIndex
         from Products.PluginIndexes.interfaces import ISortIndex
         from Products.PluginIndexes.interfaces import IUniqueValueIndex

Modified: Zope/trunk/src/Products/PluginIndexes/KeywordIndex/tests/testKeywordIndex.py
===================================================================
--- Zope/trunk/src/Products/PluginIndexes/KeywordIndex/tests/testKeywordIndex.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/Products/PluginIndexes/KeywordIndex/tests/testKeywordIndex.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -88,7 +88,7 @@
         for k, v in expectedValues:
             assert k in result
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from Products.PluginIndexes.interfaces import IPluggableIndex
         from Products.PluginIndexes.interfaces import ISortIndex
         from Products.PluginIndexes.interfaces import IUniqueValueIndex

Modified: Zope/trunk/src/Products/PluginIndexes/TopicIndex/tests/testTopicIndex.py
===================================================================
--- Zope/trunk/src/Products/PluginIndexes/TopicIndex/tests/testTopicIndex.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/Products/PluginIndexes/TopicIndex/tests/testTopicIndex.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -62,7 +62,7 @@
         self.TI.index_object(5 , Obj('5','doc3'))
         self.TI.index_object(6 , Obj('6','doc3'))
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from Products.PluginIndexes.interfaces import ITopicIndex
         from Products.PluginIndexes.interfaces import IPluggableIndex
         from zope.interface.verify import verifyClass

Modified: Zope/trunk/src/Products/ZCatalog/tests/test_catalog.py
===================================================================
--- Zope/trunk/src/Products/ZCatalog/tests/test_catalog.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/Products/ZCatalog/tests/test_catalog.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -216,7 +216,7 @@
     def _resolve_num(self, num):
         return self.d[num]
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from Products.ZCatalog.interfaces import IZCatalog
         from Products.ZCatalog.ZCatalog import ZCatalog
         from zope.interface.verify import verifyClass

Modified: Zope/trunk/src/webdav/interfaces.py
===================================================================
--- Zope/trunk/src/webdav/interfaces.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/webdav/interfaces.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -10,7 +10,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""webdav z3 interfaces.
+"""webdav interfaces.
 """
 
 from zope.interface import Interface

Modified: Zope/trunk/src/webdav/tests/testCollection.py
===================================================================
--- Zope/trunk/src/webdav/tests/testCollection.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/webdav/tests/testCollection.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -3,7 +3,7 @@
 
 class TestCollection(unittest.TestCase):
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from webdav.Collection import Collection
         from webdav.interfaces import IDAVCollection
         from zope.interface.verify import verifyClass

Modified: Zope/trunk/src/webdav/tests/testEtagSupport.py
===================================================================
--- Zope/trunk/src/webdav/tests/testEtagSupport.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/webdav/tests/testEtagSupport.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -3,7 +3,7 @@
 
 class TestEtagSupport(unittest.TestCase):
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from zope.interface.verify import verifyClass
         from webdav.EtagSupport import EtagBaseInterface
         from webdav.EtagSupport import EtagSupport

Modified: Zope/trunk/src/webdav/tests/testLockItem.py
===================================================================
--- Zope/trunk/src/webdav/tests/testLockItem.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/webdav/tests/testLockItem.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -3,7 +3,7 @@
 
 class TestLockItem(unittest.TestCase):
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from webdav.interfaces import ILockItem
         from webdav.LockItem import LockItem
         from zope.interface.verify import verifyClass

Modified: Zope/trunk/src/webdav/tests/testNullResource.py
===================================================================
--- Zope/trunk/src/webdav/tests/testNullResource.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/webdav/tests/testNullResource.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -3,7 +3,7 @@
 
 class TestLockNullResource(unittest.TestCase):
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from webdav.interfaces import IWriteLock
         from webdav.NullResource import LockNullResource
         from zope.interface.verify import verifyClass
@@ -20,7 +20,7 @@
     def _makeOne(self, parent=None, name='nonesuch', **kw):
         return self._getTargetClass()(parent, name, **kw)
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from webdav.interfaces import IWriteLock
         from zope.interface.verify import verifyClass
 

Modified: Zope/trunk/src/webdav/tests/testResource.py
===================================================================
--- Zope/trunk/src/webdav/tests/testResource.py	2010-07-31 22:13:56 UTC (rev 115298)
+++ Zope/trunk/src/webdav/tests/testResource.py	2010-07-31 22:20:28 UTC (rev 115299)
@@ -45,7 +45,7 @@
         inst = klass()
         return inst
 
-    def test_z3interfaces(self):
+    def test_interfaces(self):
         from webdav.interfaces import IDAVResource
         from webdav.interfaces import IWriteLock
         Resource = self._getTargetClass()



More information about the Zope-Checkins mailing list