"""Test for the Hello Handler.""" from artist import config def test_hello(client): """Test hello handler success.""" res = client.get(config.HEALTH_CHECK) assert res.status_code == 200 def test_legacy_hello(client): """Test legacy hello handler success.""" res = client.get('/hello') assert res.status_code == 200