8 lines
218 B
Python
Raw Normal View History

from quart import Quart
2022-11-18 16:08:50 -05:00
async def test_control(app: Quart) -> None:
2022-11-18 16:08:50 -05:00
test_client = app.test_client()
response = await test_client.get("/control/ping/")
2022-11-18 16:08:50 -05:00
assert (await response.get_json())["ping"] == "pong"