File size: 195 Bytes
afa4de7 | 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
|
afa4de7 | 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
|