testing-conventions 0.0.21

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


def test_a():
    assert grade(95) == "A"


def test_f():
    assert grade(50) == "F"