mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-18 20:11:17 +00:00
10b20574d1
This should help reduce build times.
48 lines
1.3 KiB
Python
48 lines
1.3 KiB
Python
import pytest
|
|
from tests.functional.plots import with_confirmation, without_confirmation, \
|
|
refuse_with_confirmation, select_command_with_arrows
|
|
|
|
containers = (('thefuck/python3-tcsh',
|
|
u'''FROM python:3
|
|
RUN apt-get update
|
|
RUN apt-get install -yy tcsh''',
|
|
u'tcsh'),
|
|
('thefuck/python2-tcsh',
|
|
u'''FROM python:2
|
|
RUN apt-get update
|
|
RUN apt-get install -yy tcsh''',
|
|
u'tcsh'))
|
|
|
|
|
|
@pytest.fixture(params=containers)
|
|
def proc(request, spawnu, TIMEOUT):
|
|
proc = spawnu(*request.param)
|
|
proc.sendline(u'pip install /src')
|
|
assert proc.expect([TIMEOUT, u'Successfully installed'])
|
|
proc.sendline(u'tcsh')
|
|
proc.sendline(u'setenv PYTHONIOENCODING utf8')
|
|
proc.sendline(u'eval `thefuck --alias`')
|
|
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.
|