583f6dd
9dba5c6
583f6dd
9dba5c6
583f6dd
| | from fastapi.testclient import TestClient
from api.main import app
client = TestClient(app)
def test_root():
response = client.get("/")
assert response.status_code == 200
assert response.json() == {"response":"Hello"}
|