[Zope-Checkins] CVS: Zope3/lib/python/Zope/ComponentArchitecture/tests - testAPI.py:1.1.2.5

Jim Fulton jim@zope.com
Wed, 28 Nov 2001 16:20:41 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/ComponentArchitecture/tests
In directory cvs.zope.org:/tmp/cvs-serv13762

Modified Files:
      Tag: Zope-3x-branch
	testAPI.py 
Log Message:
Added an interface assertion that wasn't needed before we started
checking assertions.


=== Zope3/lib/python/Zope/ComponentArchitecture/tests/testAPI.py 1.1.2.4 => 1.1.2.5 ===
 class I2(Interface.Interface): pass
 class Comp:
+    __implements__=I2
     def __init__(self, context): self._context=context
     def getContext(self): return self._context