diff --git a/tests/regressiontests/context_processors/tests.py b/tests/regressiontests/context_processors/tests.py
index 31ecc83..c2f8c4b 100644
a
|
b
|
class AuthContextProcessorTests(TestCase):
|
72 | 72 | response = self.client.get('/auth_processor_messages/') |
73 | 73 | self.assertContains(response, "Message 1") |
74 | 74 | |
| 75 | def test_user_type(self): |
| 76 | self.client.login(username='super', password='secret') |
| 77 | response = self.client.get('/auth_processor_messages/') |
| 78 | self.assertEqual(str(type(response.context['user'])), "<class 'django.contrib.auth.models.User'>") |
| 79 | |
| 80 | |
| 81 | |
75 | 82 | def test_user_attrs(self): |
76 | 83 | """ |
77 | 84 | Test that ContextLazyObject wraps objects properly |