testing_spaces / test_app.py
Klasta's picture
Add test and CI workflow
e4dedf8
raw
history blame contribute delete
243 Bytes
from fastapi.testclient import TestClient
from app.main import app
client = TestClient(app)
def test_root():
response = client.get("/")
assert response.status_code == 200
assert response.json() == {"message": "API is working!"}