FastAPI Testing
SKILL.md
FastAPI Testing
Patterns for testing FastAPI applications.
Core Concepts
Test Clients
| Client | Use Case | Async Support |
|---|---|---|
| TestClient | Sync tests (most cases) | No |
| AsyncClient (httpx) | Async endpoints, lifespan events | Yes |
Key concept: TestClient wraps the ASGI app - no server needed.