mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-18 12:06:04 +00:00
25 lines
796 B
Python
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
|