"""Functional tests for base blueprint.""" def test_hello(fixture_client): """Test /hello endpoint.""" response = fixture_client.get('/hello/') assert response.json == {'status': 'ok'}