testing-conventions 0.0.100

Enforce testing conventions in libraries (Python, TypeScript, and Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub fn first(value: u8) -> u8 {
    let total = value + 1;
    total
}

pub fn second(value: u8) -> u8 {
    let total = value + 2;
    total
}

pub fn third(value: u8) -> u8 {
    let total = value + 3;
    total
}