1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-10-30 14:44:05 +00:00

Merge branch 'master' of https://github.com/ds-forks/thefuck into ds-forks-master

This commit is contained in:
Vladimir Iakovlev
2017-03-13 13:47:56 +01:00
4 changed files with 57 additions and 1 deletions

View File

@@ -0,0 +1,31 @@
import pytest
from thefuck.rules.hostscli import no_website, get_new_command, match
from tests.utils import Command
no_website_long = '''
%s:
No Domain list found for website: a_website_that_does_not_exist
Please raise a Issue here: https://github.com/dhilipsiva/hostscli/issues/new
if you think we should add domains for this website.
type `hostscli websites` to see a list of websites that you can block/unblock
''' % no_website
@pytest.mark.parametrize('command', [
Command(
'sudo hostscli block a_website_that_does_not_exist',
stderr=no_website_long)])
def test_match(command):
assert match(command)
@pytest.mark.parametrize('command, result', [(
Command(
'sudo hostscli block a_website_that_does_not_exist',
stderr=no_website_long), ['hostscli websites'])])
def test_get_new_command(command, result):
assert get_new_command(command) == result