5 lines
161 B
Python
5 lines
161 B
Python
def test_read_main(client):
|
|
response = client.get("/api/v1")
|
|
assert response.status_code == 200
|
|
assert response.json() == {"message": "Hello World"}
|