"""Test for the Hello Handler.""" from product_digital import config from product_digital.constants import header def test_hello(client): """Test hello handler success.""" response = client.get(config.HEALTH_CHECK) assert response.status_code == 200 assert response.headers.get(header.CORRELATION_ID)