Files
KintoneAppBuilder/backend/app/tests/test_main.py
2024-12-04 14:44:32 +09:00

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"}