testing-conventions 0.0.26

Enforce testing conventions in libraries (Python, TypeScript, and Rust).
Documentation
1
2
3
4
5
6
7
8
9
from widget import classify


def test_pos():
    assert classify(1) == "pos"


def test_nonpos():
    assert classify(-1) == "nonpos"