mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-03-29 18:16:52 +00:00
11 lines
193 B
Python
11 lines
193 B
Python
|
|
import __builtin__
|
|
|
|
import mock
|
|
import pytest
|
|
|
|
|
|
@pytest.yield_fixture
|
|
def print_mock():
|
|
with mock.patch.object(__builtin__, 'print', autospec=True) as mock_print:
|
|
yield mock_print
|