Skip to content

Commit

Permalink
Merge 16b1cca into 1a1b520
Browse files Browse the repository at this point in the history
  • Loading branch information
nkakonas committed Jun 13, 2022
2 parents 1a1b520 + 16b1cca commit 640507f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 4 additions & 2 deletions tests/rules/test_no_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ def history_without_current(mocker):
('vom file.py', 'vom: not found'),
('fucck', 'fucck: not found'),
('puthon', "'puthon' is not recognized as an internal or external command"),
('got commit', 'got: command not found')])
('got commit', 'got: command not found'),
('gti commit -m "new commit"', 'gti: command not found')])
def test_match(mocker, script, output):
mocker.patch('thefuck.rules.no_command.which', return_value=None)

Expand All @@ -43,6 +44,7 @@ def test_not_match(mocker, script, output, which):
@pytest.mark.parametrize('script, result', [
('vom file.py', ['vim file.py']),
('fucck', ['fsck']),
('got commit', ['git commit', 'go commit'])])
('got commit', ['git commit', 'go commit']),
("gti commit -m 'new commit'", ["git commit -m 'new commit'"])])
def test_get_new_command(script, result):
assert get_new_command(Command(script, '')) == result
3 changes: 1 addition & 2 deletions thefuck/rules/no_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ def get_new_command(command):
get_all_executables())
if cmd not in new_cmds]

return [' '.join([new_command] + command.script_parts[1:])
for new_command in new_cmds]
return [command.script.replace(old_command, cmd, 1) for cmd in new_cmds]


priority = 3000

0 comments on commit 640507f

Please sign in to comment.