|
29
|
1 |
from django.contrib.auth.tests.auth_backends import BackendTest, RowlevelBackendTest, AnonymousUserBackendTest, NoAnonymousUserBackendTest |
|
0
|
2 |
from django.contrib.auth.tests.basic import BASIC_TESTS |
|
29
|
3 |
from django.contrib.auth.tests.decorators import LoginRequiredTestCase |
|
0
|
4 |
from django.contrib.auth.tests.forms import FORM_TESTS |
|
|
5 |
from django.contrib.auth.tests.remote_user \ |
|
|
6 |
import RemoteUserTest, RemoteUserNoCreateTest, RemoteUserCustomTest |
|
29
|
7 |
from django.contrib.auth.tests.models import ProfileTestCase |
|
0
|
8 |
from django.contrib.auth.tests.tokens import TOKEN_GENERATOR_TESTS |
|
29
|
9 |
from django.contrib.auth.tests.views \ |
|
|
10 |
import PasswordResetTest, ChangePasswordTest, LoginTest, LogoutTest |
|
0
|
11 |
|
|
|
12 |
# The password for the fixture data users is 'password' |
|
|
13 |
|
|
|
14 |
__test__ = { |
|
|
15 |
'BASIC_TESTS': BASIC_TESTS, |
|
|
16 |
'FORM_TESTS': FORM_TESTS, |
|
|
17 |
'TOKEN_GENERATOR_TESTS': TOKEN_GENERATOR_TESTS, |
|
|
18 |
} |