mirror of
https://github.com/aimingmed/aimingmed-ai.git
synced 2026-01-19 21:37:31 +08:00
5 lines
188 B
Python
5 lines
188 B
Python
def test_ping(test_app):
|
|
response = test_app.get("/ping")
|
|
assert response.status_code == 200
|
|
assert response.json() == {"environment": "dev", "ping": "pong!", "testing": True}
|