7 lines
169 B
Python
7 lines
169 B
Python
|
|
|
|
def test_read_main(test_client):
|
|
response = test_client.get("/api/v1")
|
|
assert response.status_code == 200
|
|
assert response.json() == {"message": "success"}
|