mirror of
https://github.com/msoedov/agentic_security.git
synced 2026-06-25 06:39:57 +02:00
13 lines
302 B
Python
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"}
|