(self)
| 151 | self.assertIs(response.cookies["c"]["secure"], True) |
| 152 | |
| 153 | def test_delete_cookie_samesite(self): |
| 154 | response = HttpResponse() |
| 155 | response.delete_cookie("c", samesite="lax") |
| 156 | self.assertEqual(response.cookies["c"]["samesite"], "lax") |
nothing calls this directly
no test coverage detected