1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-09-18 19:22:32 +01:00

Adding rule for forgotten '-r' when grepping folders

This commit is contained in:
Igor Santos
2015-05-15 19:09:14 -03:00
parent d7c67ad09d
commit d5bd57fb49
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from thefuck.rules.grep_recursive import match, get_new_command
from tests.utils import Command
def test_match():
assert match(Command('grep blah .', stderr='grep: .: Is a directory'), None)
assert not match(Command(), None)
def test_get_new_command():
assert get_new_command(
Command('grep blah .'), None) == 'grep -r blah .'