mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-18 12:06:04 +00:00
30 lines
884 B
Python
30 lines
884 B
Python
import pytest
|
|
from thefuck.rules.brew_unknown_command import match, get_new_command
|
|
from thefuck.rules.brew_unknown_command import _brew_commands
|
|
from thefuck.types import Command
|
|
|
|
|
|
@pytest.fixture
|
|
def brew_unknown_cmd():
|
|
return '''Error: Unknown command: inst'''
|
|
|
|
|
|
@pytest.fixture
|
|
def brew_unknown_cmd2():
|
|
return '''Error: Unknown command: instaa'''
|
|
|
|
|
|
def test_match(brew_unknown_cmd):
|
|
assert match(Command('brew inst', brew_unknown_cmd))
|
|
for command in _brew_commands():
|
|
assert not match(Command('brew ' + command, ''))
|
|
|
|
|
|
def test_get_new_command(brew_unknown_cmd, brew_unknown_cmd2):
|
|
assert (get_new_command(Command('brew inst', brew_unknown_cmd))
|
|
== ['brew list', 'brew install', 'brew uninstall'])
|
|
|
|
cmds = get_new_command(Command('brew instaa', brew_unknown_cmd2))
|
|
assert 'brew install' in cmds
|
|
assert 'brew uninstall' in cmds
|