(server)
| 152 | |
| 153 | @pytest.mark.anyio |
| 154 | async def test_patch(server): |
| 155 | async with httpx.AsyncClient() as client: |
| 156 | response = await client.patch(server.url, content=b"Hello, world!") |
| 157 | assert response.status_code == 200 |
| 158 | |
| 159 | |
| 160 | @pytest.mark.anyio |