testing-conventions 0.0.106

Enforce testing conventions in libraries (Python, TypeScript, and Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
CONSTANT = 3


def normalize(value):
    scaled = value * CONSTANT
    return scaled


def double(value): return value * 2


def triple(value):
    return value * 3