testing-conventions 0.0.100

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


def test_shout_uses_the_package_root_fixture(greeting):
    assert shout(greeting) == "hello!"


def test_shout_empty():
    assert shout("") == "!"