MCPcopy Index your code
hub / github.com/pallets/quart / test_werkzeug

Function test_werkzeug

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

Source from the content-addressed store, hash-verified

133
134
135async def test_werkzeug(app: Quart) -> None:
136 test_client = app.test_client()
137 response = await test_client.get("/werkzeug/")
138 assert response.status_code == 200
139 assert b"Hello" == (await response.get_data())
140
141
142async def test_generic_error(app: Quart) -> None:

Callers

nothing calls this directly

Calls 3

test_clientMethod · 0.45
getMethod · 0.45
get_dataMethod · 0.45

Tested by

no test coverage detected