MCPcopy Create free account
hub / github.com/pallets/quart / test_implicit_json_list

Function test_implicit_json_list

tests/test_basic.py:128–132  ·  view source on GitHub ↗
(app: Quart)

Source from the content-addressed store, hash-verified

126
127
128async 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
135async def test_werkzeug(app: Quart) -> None:

Callers

nothing calls this directly

Calls 3

test_clientMethod · 0.45
postMethod · 0.45
get_dataMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…