Commit c022bbec authored by Hanno Schlichting's avatar Hanno Schlichting

There's only one type of interfaces left, no need for a z3 prefix

parent 9a95db9c
......@@ -10,7 +10,7 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""AccessControl z3 interfaces.
"""AccessControl interfaces.
$Id$
"""
......
......@@ -3,7 +3,7 @@ import unittest
class TestRoleManager(unittest.TestCase):
def test_z3interfaces(self):
def test_interfaces(self):
from AccessControl.interfaces import IPermissionMappingSupport
from AccessControl.PermissionMapping import RoleManager
from zope.interface.verify import verifyClass
......@@ -15,6 +15,3 @@ def test_suite():
return unittest.TestSuite((
unittest.makeSuite(TestRoleManager),
))
if __name__ == '__main__':
unittest.main(defaultTest='test_suite')
......@@ -3,7 +3,7 @@ import unittest
class TestRoleManager(unittest.TestCase):
def test_z3interfaces(self):
def test_interfaces(self):
from AccessControl.interfaces import IRoleManager
from AccessControl.Role import RoleManager
from zope.interface.verify import verifyClass
......@@ -15,6 +15,3 @@ def test_suite():
return unittest.TestSuite((
unittest.makeSuite(TestRoleManager),
))
if __name__ == '__main__':
unittest.main(defaultTest='test_suite')
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment