mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-18 20:11:17 +00:00
37 lines
967 B
Python
37 lines
967 B
Python
import pytest
|
|
from tests.functional.plots import with_confirmation, without_confirmation, \
|
|
refuse_with_confirmation, select_command_with_arrows
|
|
|
|
containers = ((u'thefuck/python3', u'', u'fish'),
|
|
(u'thefuck/python2', u'', u'fish'))
|
|
|
|
|
|
@pytest.fixture(params=containers)
|
|
def proc(request, spawnu, TIMEOUT):
|
|
proc = spawnu(*request.param)
|
|
proc.sendline(u'thefuck --alias > ~/.config/fish/config.fish')
|
|
proc.sendline(u'fish')
|
|
return proc
|
|
|
|
|
|
@pytest.mark.functional
|
|
def test_with_confirmation(proc, TIMEOUT):
|
|
with_confirmation(proc, TIMEOUT)
|
|
|
|
|
|
@pytest.mark.functional
|
|
def test_select_command_with_arrows(proc, TIMEOUT):
|
|
select_command_with_arrows(proc, TIMEOUT)
|
|
|
|
|
|
@pytest.mark.functional
|
|
def test_refuse_with_confirmation(proc, TIMEOUT):
|
|
refuse_with_confirmation(proc, TIMEOUT)
|
|
|
|
|
|
@pytest.mark.functional
|
|
def test_without_confirmation(proc, TIMEOUT):
|
|
without_confirmation(proc, TIMEOUT)
|
|
|
|
# TODO: ensure that history changes.
|