()
| 83 | |
| 84 | |
| 85 | def test_patch(): |
| 86 | response = client.patch("/items/foo", json={"name": "Foo"}) |
| 87 | assert response.status_code == 200, response.text |
| 88 | assert response.json() == {"item_id": "foo", "item": {"name": "Foo", "price": None}} |
| 89 | |
| 90 | |
| 91 | def test_trace(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…