Extended `capsys` with context manager and custom equality operators
(capsys)
| 148 | |
| 149 | @pytest.fixture |
| 150 | def capture(capsys): |
| 151 | """Extended `capsys` with context manager and custom equality operators""" |
| 152 | return Capture(capsys) |
| 153 | |
| 154 | |
| 155 | class SanitizedString: |