[Zope3-checkins] CVS: Zope3/src/zope/app/security/grants/tests - test_annotationprincipalpermissionmanager.py:1.6.10.1 test_annotationprincipalrolemanager.py:1.6.10.1 test_annotationrolepermissionmanager.py:1.7.10.1
Grégoire Weber
zope@i-con.ch
Sun, 22 Jun 2003 10:24:27 -0400
Update of /cvs-repository/Zope3/src/zope/app/security/grants/tests
In directory cvs.zope.org:/tmp/cvs-serv24874/src/zope/app/security/grants/tests
Modified Files:
Tag: cw-mail-branch
test_annotationprincipalpermissionmanager.py
test_annotationprincipalrolemanager.py
test_annotationrolepermissionmanager.py
Log Message:
Synced up with HEAD
=== Zope3/src/zope/app/security/grants/tests/test_annotationprincipalpermissionmanager.py 1.6 => 1.6.10.1 ===
--- Zope3/src/zope/app/security/grants/tests/test_annotationprincipalpermissionmanager.py:1.6 Thu May 1 15:35:32 2003
+++ Zope3/src/zope/app/security/grants/tests/test_annotationprincipalpermissionmanager.py Sun Jun 22 10:23:24 2003
@@ -28,9 +28,10 @@
import AnnotationPrincipalPermissionManager
from zope.app.security.settings import Allow, Deny, Unset
from zope.app.tests.placelesssetup import PlacelessSetup
+from zope.interface import implements
class Manageable:
- __implements__ = IAttributeAnnotatable
+ implements(IAttributeAnnotatable)
class Test(PlacelessSetup, unittest.TestCase):
=== Zope3/src/zope/app/security/grants/tests/test_annotationprincipalrolemanager.py 1.6 => 1.6.10.1 ===
--- Zope3/src/zope/app/security/grants/tests/test_annotationprincipalrolemanager.py:1.6 Thu May 1 15:35:32 2003
+++ Zope3/src/zope/app/security/grants/tests/test_annotationprincipalrolemanager.py Sun Jun 22 10:23:24 2003
@@ -26,11 +26,11 @@
from zope.app.security.grants.principalrole \
import AnnotationPrincipalRoleManager
from zope.app.security.settings import Allow, Deny
-from zope.app.services.tests.placefulsetup \
- import PlacefulSetup
+from zope.app.services.tests.placefulsetup import PlacefulSetup
+from zope.interface import implements
class Manageable:
- __implements__ = IAttributeAnnotatable
+ implements(IAttributeAnnotatable)
class Test(PlacefulSetup, unittest.TestCase):
=== Zope3/src/zope/app/security/grants/tests/test_annotationrolepermissionmanager.py 1.7 => 1.7.10.1 ===
--- Zope3/src/zope/app/security/grants/tests/test_annotationrolepermissionmanager.py:1.7 Thu May 1 15:35:32 2003
+++ Zope3/src/zope/app/security/grants/tests/test_annotationrolepermissionmanager.py Sun Jun 22 10:23:24 2003
@@ -24,11 +24,12 @@
from zope.app.security.registries.permissionregistry import permissionRegistry
from zope.app.security.settings import Allow, Deny
from zope.app.services.tests.placefulsetup import PlacefulSetup
+from zope.interface import implements
import unittest
class Manageable:
- __implements__ = IAttributeAnnotatable
+ implements(IAttributeAnnotatable)
class Test(PlacefulSetup, unittest.TestCase):