chore: sonar scan test #1

Closed
demo-bot wants to merge 7 commits from dev into main
Showing only changes of commit 5d4d90c17c - Show all commits

9
app/test_main.py Normal file
View File

@@ -0,0 +1,9 @@
from fastapi.testclient import TestClient
from app.main import app
client = TestClient(app)
def test_health():
response = client.get("/health")
assert response.status_code == 200