mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-31 02:01:13 +00:00
12 lines
346 B
Python
12 lines
346 B
Python
|
from thefuck.rules.cd_cs import match, get_new_command
|
||
|
from thefuck.types import Command
|
||
|
|
||
|
|
||
|
def test_match():
|
||
|
assert match(Command('cs', 'cs: command not found'))
|
||
|
assert match(Command('cs /etc/', 'cs: command not found'))
|
||
|
|
||
|
|
||
|
def test_get_new_command():
|
||
|
assert get_new_command(Command('cs /etc/', 'cs: command not found')) == 'cd /etc/'
|