(app: Quart)
| 119 | |
| 120 | |
| 121 | async def test_implicit_json(app: Quart) -> None: |
| 122 | test_client = app.test_client() |
| 123 | response = await test_client.post("/implicit_json/", json={"value": "json"}) |
| 124 | assert response.status_code == 200 |
| 125 | assert b'{"value":"json"}\n' == (await response.get_data()) |
| 126 | |
| 127 | |
| 128 | async def test_implicit_json_list(app: Quart) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…