# Clean fixture for Python unit isolation (#42): the canonical unit test. It imports
# only the unit under test, and mocks its collaborator by string in a fixture
# (`patch("myproject.widget.record")`) — so no first-party collaborator is imported.
# unit under test
yield
assert is not None