Make a PATCH request. See :meth:`~quart.testing.QuartClient.open` for argument details.
(self, *args: Any, **kwargs: Any)
| 246 | return await self.open(*args, method="OPTIONS", **kwargs) |
| 247 | |
| 248 | async def patch(self, *args: Any, **kwargs: Any) -> Response: |
| 249 | """Make a PATCH request. |
| 250 | |
| 251 | See :meth:`~quart.testing.QuartClient.open` for argument |
| 252 | details. |
| 253 | """ |
| 254 | return await self.open(*args, method="PATCH", **kwargs) |
| 255 | |
| 256 | async def post(self, *args: Any, **kwargs: Any) -> Response: |
| 257 | """Make a POST request. |