summaryrefslogtreecommitdiff
path: root/tests/auth_tests/test_context_processors.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auth_tests/test_context_processors.py')
-rw-r--r--tests/auth_tests/test_context_processors.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auth_tests/test_context_processors.py b/tests/auth_tests/test_context_processors.py
index 4c4652cd1b..d9cd679a6e 100644
--- a/tests/auth_tests/test_context_processors.py
+++ b/tests/auth_tests/test_context_processors.py
@@ -56,6 +56,10 @@ class PermWrapperTests(SimpleTestCase):
with self.assertRaises(TypeError):
self.EQLimiterObject() in pldict
+ def test_iter(self):
+ with self.assertRaisesMessage(TypeError, 'PermWrapper is not iterable.'):
+ iter(PermWrapper(MockUser()))
+
@override_settings(ROOT_URLCONF='auth_tests.urls', TEMPLATES=AUTH_TEMPLATES)
class AuthContextProcessorTests(TestCase):