testing-conventions 0.0.31

Enforce testing conventions in libraries (Python, TypeScript, and Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
# Same un-mocked first-party collaborator as the red fixture — but this file is
# waived in `testing-conventions.toml`, so `unmocked-collaborator` is lifted.
from myproject.widget import build

from myproject.ledger import record


def describe_build():
    def it_builds():
        assert build(record) is not None