StockPred-Backend / tests /test_health.py
Anurag33Gaikwad's picture
Upload 15 files
1243c9b verified
Raw
History Blame
237 Bytes
from fastapi.testclient import TestClient
from main import app
client = TestClient(app)
def test_root_health():
resp = client.get("/")
assert resp.status_code == 200
body = resp.json()
assert "status" in body