1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-16 14:08:12 +00:00
seahub/thirdpart/auth/tests/__init__.py

18 lines
844 B
Python
Raw Normal View History

2012-08-07 11:50:10 +00:00
from auth.tests.auth_backends import BackendTest, RowlevelBackendTest, AnonymousUserBackendTest, NoAnonymousUserBackendTest
from auth.tests.basic import BASIC_TESTS
from auth.tests.decorators import LoginRequiredTestCase
from auth.tests.forms import UserCreationFormTest, AuthenticationFormTest, SetPasswordFormTest, PasswordChangeFormTest, UserChangeFormTest, PasswordResetFormTest
from auth.tests.remote_user \
2012-04-07 12:08:56 +00:00
import RemoteUserTest, RemoteUserNoCreateTest, RemoteUserCustomTest
2012-08-07 11:50:10 +00:00
from auth.tests.models import ProfileTestCase
from auth.tests.tokens import TOKEN_GENERATOR_TESTS
from auth.tests.views \
2012-04-07 12:08:56 +00:00
import PasswordResetTest, ChangePasswordTest, LoginTest, LogoutTest
# The password for the fixture data users is 'password'
__test__ = {
'BASIC_TESTS': BASIC_TESTS,
'TOKEN_GENERATOR_TESTS': TOKEN_GENERATOR_TESTS,
}