"""Integration tests suite.""" from tests.integration.conftest import ows_abacus_adjustment_api_client def test_get_hello(basic_headers): """Get Hello Endpoint.""" ows_abacus_adjustments_client = ows_abacus_adjustment_api_client(basic_headers) response = ows_abacus_adjustments_client.get_hello() assert response.status_code == 200, 'Reason: {}\nURL: {}'.format( response.reason, response.url) response_body = response.json() assert 'status' in response_body assert 'ok' in response_body['status']