Files
agentic_security/tests/routes/test_health.py
2025-03-08 23:46:09 +03:00

13 lines
302 B
Python

from fastapi.testclient import TestClient
from agentic_security.app import app
def test_health_check():
"""Test the health check endpoint."""
client = TestClient(app)
response = client.get("/health")
assert response.status_code == 200
assert response.json() == {"status": "ok"}