mirror of
https://github.com/azaion/loader.git
synced 2026-04-22 22:56:32 +00:00
8f7deb3fca
Made-with: Cursor
8 lines
216 B
Python
8 lines
216 B
Python
def test_health_returns_200(base_url, api_client):
|
|
# Act
|
|
response = api_client.get(f"{base_url}/health")
|
|
|
|
# Assert
|
|
assert response.status_code == 200
|
|
assert response.json()["status"] == "healthy"
|