(app: Quart)
| 126 | |
| 127 | |
| 128 | async def test_implicit_json_list(app: Quart) -> None: |
| 129 | test_client = app.test_client() |
| 130 | response = await test_client.post("/implicit_json/", json=["a", 2]) |
| 131 | assert response.status_code == 200 |
| 132 | assert b'["a",2]\n' == (await response.get_data()) |
| 133 | |
| 134 | |
| 135 | async def test_werkzeug(app: Quart) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…