test_smoke.py 221 B

1234567891011
  1. from hermes_mcp.server import health, root
  2. def test_root():
  3. payload = root()
  4. assert payload["status"] == "ok"
  5. assert payload["mount"] == "/mcp/sse"
  6. def test_health():
  7. assert health()["status"] == "ok"