1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-09-20 20:22:41 +01:00

#356 Print useful information when fuck called and alias isn't configured

This commit is contained in:
nvbn
2015-09-06 13:29:42 +03:00
parent f7ce0fda25
commit 4392872568
7 changed files with 77 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
import pytest
from tests.functional.plots import with_confirmation, without_confirmation, \
refuse_with_confirmation, history_changed, history_not_changed, \
select_command_with_arrows
select_command_with_arrows, how_to_configure
containers = ((u'thefuck/ubuntu-python3-bash',
u'''FROM ubuntu:latest
@@ -55,3 +55,9 @@ def test_refuse_with_confirmation(proc, TIMEOUT):
def test_without_confirmation(proc, TIMEOUT):
without_confirmation(proc, TIMEOUT)
history_changed(proc, TIMEOUT, u'echo test')
@pytest.mark.functional
@pytest.mark.once_without_docker
def test_how_to_configure_alias(proc, TIMEOUT):
how_to_configure(proc, TIMEOUT)