4 lines
125 B
Python
4 lines
125 B
Python
|
def test_ping_discipline(client):
|
||
|
response = client.get("/ping")
|
||
|
assert b"{\"message\":\"pong\"}\n" in response.data
|