mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-19 04:21:14 +00:00
Adding rule for forgotten '-r' when grepping folders
This commit is contained in:
parent
d7c67ad09d
commit
d5bd57fb49
12
tests/rules/test_grep_recursive.py
Normal file
12
tests/rules/test_grep_recursive.py
Normal 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 .'
|
7
thefuck/rules/grep_recursive.py
Normal file
7
thefuck/rules/grep_recursive.py
Normal file
@ -0,0 +1,7 @@
|
||||
def match(command, settings):
|
||||
return (command.script.startswith('grep')
|
||||
and 'is a directory' in command.stderr.lower())
|
||||
|
||||
|
||||
def get_new_command(command, settings):
|
||||
return 'grep -r {}'.format(command.script[5:])
|
Loading…
x
Reference in New Issue
Block a user