testing-conventions 0.0.15

Enforce testing conventions in libraries (Python, TypeScript, and Rust).
Documentation
1
2
3
4
5
6
def classify(n):
    if n > 0:
        return "positive"
    if n < 0:
        return "negative"
    return "zero"