mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-19 04:21:14 +00:00
23 lines
459 B
Python
23 lines
459 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def builtins_open(mocker):
|
|
return mocker.patch('six.moves.builtins.open')
|
|
|
|
|
|
@pytest.fixture
|
|
def isfile(mocker):
|
|
return mocker.patch('os.path.isfile', return_value=True)
|
|
|
|
|
|
@pytest.fixture
|
|
@pytest.mark.usefixtures('isfile')
|
|
def history_lines(mocker):
|
|
def aux(lines):
|
|
mock = mocker.patch('io.open')
|
|
mock.return_value.__enter__ \
|
|
.return_value.readlines.return_value = lines
|
|
|
|
return aux
|