rust-testing

Installation
SKILL.md

Rust Testing

Unit Tests

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_add() { assert_eq!(add(2, 3), 5); }

    #[test]
    fn test_error() {
        let result = parse("invalid");
        assert!(result.is_err());
    }
Installs
6
First Seen
May 15, 2026
rust-testing — webcomunicasolutions/claude-code-toolkit