1
0
This commit is contained in:
2026-03-30 09:54:38 +00:00
commit 84fc5e4b14
10 changed files with 278 additions and 0 deletions

13
tests/test_health.py Normal file
View File

@@ -0,0 +1,13 @@
from fastapi.testclient import TestClient
from comment_automation.main import app
client = TestClient(app)
def test_health() -> None:
response = client.get("/health")
assert response.status_code == 200
assert response.json() == {"status": "ok"}