mirror of
https://github.com/django/django.git
synced 2025-08-04 19:08:28 +00:00
Added a test for PermWrapper.__iter__().
This commit is contained in:
parent
98706bb35e
commit
4803834aaa
1 changed files with 4 additions and 0 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue