(server)
| 168 | |
| 169 | |
| 170 | def test_patch(server): |
| 171 | with httpx.Client() as client: |
| 172 | response = client.patch(server.url, content=b"Hello, world!") |
| 173 | assert response.status_code == 200 |
| 174 | assert response.reason_phrase == "OK" |
| 175 | |
| 176 | |
| 177 | def test_delete(server): |