SKILL.md
313 tokens · o200k_base · 1,316 bytes
Use this skill when working on Axum tests that currently start a server or could be simplified.
Prefer oneshot when the test only verifies:
- status codes
- headers
- JSON/body shape
- route or middleware behavior
- request handling without real network behavior
Use:
use tower::ServiceExt;
oneshot is available through tower::ServiceExt.
Keep a real TcpListener + axum::serve(...) when the test needs:
- WebSocket upgrade/handshake behavior
- real client behavior (
reqwest,tokio_tungstenite, etc.) as the thing under test - transport/lifecycle concerns like bind/listen/shutdown
- true end-to-end coverage over
http://orws://
Repository guidance:
crates/transcribe-cactus/tests/batch.rsstyle tests are goodoneshotcandidatescrates/transcribe-cactus/tests/live.rsWebSocket tests should stay real-server- if several tests share the same in-process request setup, add a tiny local helper (for example request builder or response JSON parser)
After changes:
- run
pnpm exec dprint fmt - run the relevant Rust test compile/check command
Discovery context
Discovered by repository scan. No exact path reference found in the snapshot’s root AGENTS.md.