summaryrefslogtreecommitdiffstats
path: root/webapp/django/contrib/auth/tests/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/django/contrib/auth/tests/__init__.py')
-rw-r--r--webapp/django/contrib/auth/tests/__init__.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/webapp/django/contrib/auth/tests/__init__.py b/webapp/django/contrib/auth/tests/__init__.py
new file mode 100644
index 0000000000..23cfbafba7
--- /dev/null
+++ b/webapp/django/contrib/auth/tests/__init__.py
@@ -0,0 +1,14 @@
+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,
+}