diff options
Diffstat (limited to 'tests/auth_tests')
| -rw-r--r-- | tests/auth_tests/test_models.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/auth_tests/test_models.py b/tests/auth_tests/test_models.py index 8387c5f9ee..3c1b8fae64 100644 --- a/tests/auth_tests/test_models.py +++ b/tests/auth_tests/test_models.py @@ -368,3 +368,15 @@ class AnonymousUserTests(SimpleTestCase): def test_check_password(self): with self.assertRaisesMessage(NotImplementedError, self.no_repr_msg): self.user.check_password('password') + + +class GroupTests(SimpleTestCase): + def test_str(self): + g = Group(name='Users') + self.assertEqual(str(g), 'Users') + + +class PermissionTests(TestCase): + def test_str(self): + p = Permission.objects.get(codename='view_customemailfield') + self.assertEqual(str(p), 'auth_tests | custom email field | Can view custom email field') |
