(self)
| 21 | |
| 22 | class TokenGeneratorTest(TestCase): |
| 23 | def test_make_token(self): |
| 24 | user = User.objects.create_user("tokentestuser", "test2@example.com", "testpw") |
| 25 | p0 = PasswordResetTokenGenerator() |
| 26 | tk1 = p0.make_token(user) |
| 27 | self.assertIs(p0.check_token(user, tk1), True) |
| 28 | |
| 29 | def test_10265(self): |
| 30 | """ |
nothing calls this directly
no test coverage detected