File size: 195 Bytes
6d20eab | 1 2 3 4 5 6 7 8 9 | from fastapi.testclient import TestClient
from app.main import app
def test_lifespan():
client = TestClient(app)
response = client.get("/health")
assert response.status_code == 200
|
6d20eab | 1 2 3 4 5 6 7 8 9 | from fastapi.testclient import TestClient
from app.main import app
def test_lifespan():
client = TestClient(app)
response = client.get("/health")
assert response.status_code == 200
|