[Zope3-checkins] CVS: Zope3/src/zope/app/batching - tests.py:1.2
Jim Fulton
jim at zope.com
Fri Mar 5 17:09:56 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/batching
In directory cvs.zope.org:/tmp/cvs-serv15449/src/zope/app/batching
Modified Files:
tests.py
Log Message:
Renamed interface methods:
isImplementedByInstancesOf to implementedBy
isImplementedBy to providedBy
=== Zope3/src/zope/app/batching/tests.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/batching/tests.py:1.1 Tue Mar 2 12:28:45 2004
+++ Zope3/src/zope/app/batching/tests.py Fri Mar 5 17:08:52 2004
@@ -27,7 +27,7 @@
'seven', 'eight', 'nine', 'ten']
def test_Interface(self):
- self.failUnless(IBatch.isImplementedBy(Batch([], 0, 0)))
+ self.failUnless(IBatch.providedBy(Batch([], 0, 0)))
def test_constructor(self):
batch = Batch(self.getData(), 9, 3)
More information about the Zope3-Checkins
mailing list