You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
541 B
15 lines
541 B
|
13 years ago
|
from django.contrib.auth.tests.basic import BASIC_TESTS
|
||
|
|
from django.contrib.auth.tests.views import PasswordResetTest, ChangePasswordTest
|
||
|
|
from django.contrib.auth.tests.forms import FORM_TESTS
|
||
|
|
from django.contrib.auth.tests.tokens import TOKEN_GENERATOR_TESTS
|
||
|
|
|
||
|
|
# The password for the fixture data users is 'password'
|
||
|
|
|
||
|
|
__test__ = {
|
||
|
|
'BASIC_TESTS': BASIC_TESTS,
|
||
|
|
'PASSWORDRESET_TESTS': PasswordResetTest,
|
||
|
|
'FORM_TESTS': FORM_TESTS,
|
||
|
|
'TOKEN_GENERATOR_TESTS': TOKEN_GENERATOR_TESTS,
|
||
|
|
'CHANGEPASSWORD_TESTS': ChangePasswordTest,
|
||
|
|
}
|