Added a test for PermWrapper.__iter__().

This commit is contained in:
Mads Jensen 2017-09-25 20:50:11 +02:00 committed by Tim Graham
parent 98706bb35e
commit 4803834aaa
1 changed files with 4 additions and 0 deletions

View File

@ -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):