test_smoke.py 330 B

123456789101112131415
  1. from hermes_mcp.server import app
  2. def test_root():
  3. from fastapi.testclient import TestClient
  4. client = TestClient(app)
  5. assert client.get("/").status_code == 200
  6. def test_health():
  7. from fastapi.testclient import TestClient
  8. client = TestClient(app)
  9. assert client.get("/health").json()["status"] == "ok"