mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-19 04:21:14 +00:00
26 lines
834 B
Python
26 lines
834 B
Python
import pytest
|
|
from thefuck.rules.cd_mkdir import match, get_new_command
|
|
from thefuck.types import Command
|
|
|
|
|
|
@pytest.mark.parametrize('command', [
|
|
Command('cd foo', 'cd: foo: No such file or directory'),
|
|
Command('cd foo/bar/baz',
|
|
'cd: foo: No such file or directory'),
|
|
Command('cd foo/bar/baz', 'cd: can\'t cd to foo/bar/baz')])
|
|
def test_match(command):
|
|
assert match(command)
|
|
|
|
|
|
@pytest.mark.parametrize('command', [
|
|
Command('cd foo', ''), Command('', '')])
|
|
def test_not_match(command):
|
|
assert not match(command)
|
|
|
|
|
|
@pytest.mark.parametrize('command, new_command', [
|
|
(Command('cd foo', ''), 'mkdir -p foo && cd foo'),
|
|
(Command('cd foo/bar/baz', ''), 'mkdir -p foo/bar/baz && cd foo/bar/baz')])
|
|
def test_get_new_command(command, new_command):
|
|
assert get_new_command(command) == new_command
|