From 4803834aaad99a92e65b5c70ccdbcf4d07ea9b03 Mon Sep 17 00:00:00 2001 From: Mads Jensen Date: Mon, 25 Sep 2017 20:50:11 +0200 Subject: [PATCH] Added a test for PermWrapper.__iter__(). --- tests/auth_tests/test_context_processors.py | 4 ++++ 1 file changed, 4 insertions(+) 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):