[Zope3-checkins] CVS: Zope3/src/zope/app/cache/tests - test_cachename.py:1.7 test_ramcache.py:1.11

Naveen P pnaveen at zeomega.com
Thu Dec 18 04:57:43 EST 2003


Update of /cvs-repository/Zope3/src/zope/app/cache/tests
In directory cvs.zope.org:/tmp/cvs-serv29648/cache/tests

Modified Files:
	test_cachename.py test_ramcache.py 
Log Message:
Applied the containment constraints on the PluggableAuthorisationService, PrincipalSource, Registration Manager and Adapter Registration.


=== Zope3/src/zope/app/cache/tests/test_cachename.py 1.6 => 1.7 ===
--- Zope3/src/zope/app/cache/tests/test_cachename.py:1.6	Tue Aug 19 13:34:12 2003
+++ Zope3/src/zope/app/cache/tests/test_cachename.py	Thu Dec 18 04:57:11 2003
@@ -30,6 +30,8 @@
 
 class CachingServiceStub:
 
+    __name__ = __parent__ = None
+
     implements(ILocalService, IAttributeAnnotatable)
 
     def getAvailableCaches(self):


=== Zope3/src/zope/app/cache/tests/test_ramcache.py 1.10 => 1.11 ===
--- Zope3/src/zope/app/cache/tests/test_ramcache.py:1.10	Sun Sep 21 13:31:18 2003
+++ Zope3/src/zope/app/cache/tests/test_ramcache.py	Thu Dec 18 04:57:11 2003
@@ -30,6 +30,9 @@
 
 
 class Locatable:
+
+    __name__ = __parent__ = None
+
     implements(IPhysicallyLocatable)
 
     def __init__(self, path=('a', 'b')):
@@ -45,7 +48,9 @@
                    TestCase,
                    BaseICacheTest,
                    ):
-
+    
+    __name__ = __parent__ = None
+     
     def _Test__new(self):
         from zope.app.cache.ram import RAMCache
         return RAMCache()




More information about the Zope3-Checkins mailing list