Commit e85a6766 authored by Jérome Perrin's avatar Jérome Perrin

fixup! testERP5Security: test ERP5UserLoginManager compliance to PAS interfaces

parent 837a3165
......@@ -94,13 +94,13 @@ class TestUserManagement(ERP5TypeTestCase):
verifyClass(IAuthenticationPlugin, ERP5UserManager)
verifyClass(IUserEnumerationPlugin, ERP5UserManager)
def test_UserLoginManagerInterfaces(self):
def test_LoginUserManagerInterfaces(self):
"""Tests user login manager plugin respects interfaces."""
from Products.PluggableAuthService.interfaces.plugins import\
IAuthenticationPlugin, IUserEnumerationPlugin
from Products.ERP5Security.ERP5UserLoginManager import ERP5UserLoginManager
verifyClass(IAuthenticationPlugin, ERP5UserLoginManager)
verifyClass(IUserEnumerationPlugin, ERP5UserLoginManager)
from Products.ERP5Security.ERP5LoginUserManager import ERP5LoginUserManager
verifyClass(IAuthenticationPlugin, ERP5LoginUserManager)
verifyClass(IUserEnumerationPlugin, ERP5LoginUserManager)
def test_UserFolder(self):
"""Tests user folder has correct meta type."""
......
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