1
0
mirror of https://github.com/nvbn/thefuck.git synced 2024-10-06 02:41:10 +01:00
thefuck/tests/rules/test_yarn_alias.py
2017-08-31 17:58:56 +02:00

25 lines
796 B
Python

import pytest
from thefuck.rules.yarn_alias import match, get_new_command
from thefuck.types import Command
output_remove = 'error Did you mean `yarn remove`?'
output_etl = 'error Command "etil" not found. Did you mean "etl"?'
output_list = 'error Did you mean `yarn list`?'
@pytest.mark.parametrize('command', [
Command('yarn rm', output_remove),
Command('yarn etil', output_etl),
Command('yarn ls', output_list)])
def test_match(command):
assert match(command)
@pytest.mark.parametrize('command, new_command', [
(Command('yarn rm', output_remove), 'yarn remove'),
(Command('yarn etil', output_etl), 'yarn etl'),
(Command('yarn ls', output_list), 'yarn list')])
def test_get_new_command(command, new_command):
assert get_new_command(command) == new_command