Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
from fastapi.testclient import TestClient from myapp.main import app client = TestClient(app) def test_read_root(): resp = client.get("/") assert resp.status_code == 200 assert resp.json() == {"message": "Hello World"} def test_create_user(): resp = client.post("/users/", json={"name": "Alice", "email": "alice@example.com"}) assert resp.status_code == 201 assert resp.json()["name"] == "Alice"
Result
Open