coder-rust-testing
Installation
SKILL.md
<skill_overview> Write fast, reliable, and maintainable Rust tests Writing unit tests Adding integration tests Testing async code Improving test reliability The Rust Book - Testing </skill_overview> <test_structure> Use #[cfg(test)] mod tests in the same module for unit tests Put integration tests in tests/ as separate crates Keep tests independent and deterministic </test_structure> <arrange_act_assert>