rust-testing
Installation
SKILL.md
Rust Testing Skill
Master comprehensive testing in Rust: unit tests, integration tests, doc tests, property testing, and mocking.
Quick Start
Unit Tests
pub fn add(a: i32, b: i32) -> i32 {
a + b
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_add_positive() {
Related skills
More from pluginagentmarketplace/custom-plugin-rust
rust-wasm
Master WebAssembly with Rust - wasm-pack, wasm-bindgen, and browser integration
46rust-performance
Master Rust performance - profiling, benchmarking, and optimization
12rust-docker
Master Docker containerization for Rust applications
5rust-cli
Build professional CLI applications with clap and TUI
4cargo-ecosystem
Master Cargo, testing, and Rust development tools
4trait-generics
Master Rust traits, generics, and type system
4