"""Basic smoke tests.""" def test_health_check(client): response = client.get("/health") assert response.status_code == 200 data = response.json() assert data["status"] == "healthy" def test_docs_available_in_debug(client): response = client.get("/docs") assert response.status_code == 200