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
15
16
def alpha(value):
    first = value * 2
    second = first + 1
    third = second * 3
    fourth = third + 4
    fifth = fourth * 5
    return fifth


def beta(value):
    first = value * 3
    second = first + 2
    third = second * 4
    fourth = third + 5
    fifth = fourth * 6
    return fifth