2015-06-06 17:06:10 +02:00
|
|
|
import pytest
|
|
|
|
from thefuck.rules.cargo_no_command import match, get_new_command
|
2017-08-31 17:58:56 +02:00
|
|
|
from thefuck.types import Command
|
2015-06-06 17:06:10 +02:00
|
|
|
|
|
|
|
|
2016-06-18 13:50:47 -03:00
|
|
|
no_such_subcommand_old = """No such subcommand
|
2015-06-06 17:06:10 +02:00
|
|
|
|
|
|
|
Did you mean `build`?
|
|
|
|
"""
|
|
|
|
|
2016-06-18 13:50:47 -03:00
|
|
|
no_such_subcommand = """error: no such subcommand
|
|
|
|
|
|
|
|
\tDid you mean `build`?
|
|
|
|
"""
|
|
|
|
|
2015-06-06 17:06:10 +02:00
|
|
|
|
|
|
|
@pytest.mark.parametrize('command', [
|
2017-08-31 17:58:56 +02:00
|
|
|
Command('cargo buid', no_such_subcommand_old),
|
|
|
|
Command('cargo buils', no_such_subcommand)])
|
2015-06-06 17:06:10 +02:00
|
|
|
def test_match(command):
|
2015-09-07 13:00:29 +03:00
|
|
|
assert match(command)
|
2015-06-06 17:06:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('command, new_command', [
|
2017-08-31 17:58:56 +02:00
|
|
|
(Command('cargo buid', no_such_subcommand_old), 'cargo build'),
|
|
|
|
(Command('cargo buils', no_such_subcommand), 'cargo build')])
|
2015-06-06 17:06:10 +02:00
|
|
|
def test_get_new_command(command, new_command):
|
2015-09-07 13:00:29 +03:00
|
|
|
assert get_new_command(command) == new_command
|