Check the never-cache status of the password change done view
(self)
| 6205 | self.assertIsNone(get_max_age(response)) |
| 6206 | |
| 6207 | def test_password_change_done(self): |
| 6208 | "Check the never-cache status of the password change done view" |
| 6209 | response = self.client.get(reverse("admin:password_change_done")) |
| 6210 | self.assertIsNone(get_max_age(response)) |
| 6211 | |
| 6212 | def test_JS_i18n(self): |
| 6213 | "Check the never-cache status of the JavaScript i18n view" |
nothing calls this directly
no test coverage detected