Make a DELETE request. See :meth:`~quart.testing.QuartClient.open` for argument details.
(self, *args: Any, **kwargs: Any)
| 214 | return self.websocket_connection_class(self.app, scope) |
| 215 | |
| 216 | async def delete(self, *args: Any, **kwargs: Any) -> Response: |
| 217 | """Make a DELETE request. |
| 218 | |
| 219 | See :meth:`~quart.testing.QuartClient.open` for argument |
| 220 | details. |
| 221 | """ |
| 222 | return await self.open(*args, method="DELETE", **kwargs) |
| 223 | |
| 224 | async def get(self, *args: Any, **kwargs: Any) -> Response: |
| 225 | """Make a GET request. |