"""Tests health-check endpoint.""" from abacus_common_logic.test_utils.helpers import get_json_body def test_health_endpoint(fixture_client): """Test health endpoint.""" response = fixture_client.get('/hello/') assert response.status_code == 200 response_data = get_json_body(response) assert response_data == {'status': 'ok'}