mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-19 12:24:29 +00:00
22 lines
458 B
Python
22 lines
458 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
|