[Zope-Checkins] CVS: Zope/lib/python/Interface/tests - testDocument.py:1.4 testInterface.py:1.5 unitfixtures.py:1.4
Chris McDonough
chrism@zope.com
Tue, 11 Jun 2002 11:34:28 -0400
Update of /cvs-repository/Zope/lib/python/Interface/tests
In directory cvs.zope.org:/tmp/cvs-serv17860/tests
Modified Files:
testDocument.py testInterface.py unitfixtures.py
Log Message:
Moved _Attribute.py module back to Attribute.py at Jim's behest in the name of maintaining similarity with the Zope 3 Interface package.
=== Zope/lib/python/Interface/tests/testDocument.py 1.3 => 1.4 ===
from unittest import TestCase, TestSuite, main, makeSuite
from Interface import Interface
-from Interface._Attribute import Attribute
+from Interface.Attribute import Attribute
class Test(TestCase):
=== Zope/lib/python/Interface/tests/testInterface.py 1.4 => 1.5 ===
from Interface.Implements import objectImplements
from Interface import Interface
-from Interface._Attribute import Attribute
+from Interface.Attribute import Attribute
class InterfaceTests(unittest.TestCase):
=== Zope/lib/python/Interface/tests/unitfixtures.py 1.3 => 1.4 ===
##############################################################################
from Interface import Interface
-from Interface._Attribute import Attribute
+from Interface.Attribute import Attribute
class mytest(Interface):
pass