summaryrefslogtreecommitdiff
path: root/django/contrib/auth/tests/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/contrib/auth/tests/__init__.py')
-rw-r--r--django/contrib/auth/tests/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/django/contrib/auth/tests/__init__.py b/django/contrib/auth/tests/__init__.py
index bd86111586..9a381ef93d 100644
--- a/django/contrib/auth/tests/__init__.py
+++ b/django/contrib/auth/tests/__init__.py
@@ -1,6 +1,6 @@
from django.contrib.auth.tests.basic import BASIC_TESTS
from django.contrib.auth.tests.views \
- import PasswordResetTest, ChangePasswordTest, LoginTest
+ import PasswordResetTest, ChangePasswordTest, LoginTest, LogoutTest
from django.contrib.auth.tests.forms import FORM_TESTS
from django.contrib.auth.tests.remote_user \
import RemoteUserTest, RemoteUserNoCreateTest, RemoteUserCustomTest
@@ -15,4 +15,5 @@ __test__ = {
'TOKEN_GENERATOR_TESTS': TOKEN_GENERATOR_TESTS,
'CHANGEPASSWORD_TESTS': ChangePasswordTest,
'LOGIN_TESTS': LoginTest,
+ 'LOGOUT_TESTS': LogoutTest,
}