rust-testing

Installation
SKILL.md

Rust Testing

Comprehensive guide for testing Rust code effectively.

Quick Start

Write unit tests inline with your code:

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

    #[test]
    fn it_works() {
        let result = add(2, 2);
        assert_eq!(result, 4);
    }
Installs
2
GitHub Stars
1
First Seen
Jul 9, 2026
rust-testing — tomevault-io/skills-registry