# Red fixture for Python unit isolation (#393, defect 1a — any-symbol-clears-all).
# A `from … import a, b` collaborator is mocked only when EVERY imported symbol is
# individually patched. Here the fixture patches `myproject.ledger.record` but leaves
# the sibling `erase` un-mocked — so the import still reaches a real collaborator and
# must be flagged.
# unit under test — never a collaborator
# `erase` is NOT mocked → violation
# Uses the real `erase` collaborator — not isolated.
assert is not None