What problem does it solve? Writing comprehensive integration tests for every FastAPI endpoint is repetitive and error-prone. This Skill automates the creation of pytest test suites from API specification documents, ensuring consistent coverage of happy paths, error codes, validation failures, and edge cases without manual boilerplate. ## Core Features & Use Cases - Standard Test Matrix: Automatically generates tests for each endpoint covering success cases, 404 not found, 422 validation errors, 409 conflicts, 401/403 auth checks, boundary conditions, pagination, sorting, and filtering. - Test Infrastructure Generation: Produces conftest.py with async database fixtures and HTTP test clients, plus test data factories for valid and invalid request payloads. - Structured Output: Creates organized test classes per HTTP method (POST, GET, PUT, DELETE) following FastAPI testing conventions, with a summary report of coverage. - Use Case: After generating a FastAPI router from an API spec, invoke this Skill to produce a complete test suite with 12+ test cases per module, ready to run with pytest. ## Quick Start Generate pytest integration tests for the weighing module based on its API specification document.