mirror of
https://github.com/Hopiu/django.git
synced 2026-04-18 05:51:21 +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…
Reference in a new issue