rust-testing-strategy
Installation
SKILL.md
Rust Testing Strategy
Verification Commands
-
When modifying Rust code, run clippy to detect issues:
cargo clippy --all-features --all-targets --workspace --no-deps -
Use
cargo doc --no-deps --all-featuresto check documentation
Test Execution
- Use
cargo-nextestfor running unit and integration tests - Use the default test runner for documentation tests
- For comprehensive verification, run the complete test suite
- Database seeding can be performed using yarn commands in the project's package.json