2015-05-08 11:42:00 +02:00
|
|
|
import pytest
|
|
|
|
from thefuck.rules.dry import match, get_new_command
|
|
|
|
from tests.utils import Command
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('command', [
|
|
|
|
Command(script='cd cd foo'),
|
|
|
|
Command(script='git git push origin/master')])
|
|
|
|
def test_match(command):
|
2015-09-07 13:00:29 +03:00
|
|
|
assert match(command)
|
2015-05-08 11:42:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('command, new_command', [
|
|
|
|
(Command('cd cd foo'), 'cd foo'),
|
|
|
|
(Command('git git push origin/master'), 'git push origin/master')])
|
|
|
|
def test_get_new_command(command, new_command):
|
2015-09-07 13:00:29 +03:00
|
|
|
assert get_new_command(command) == new_command
|