1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-10-08 21:04:03 +01:00

#N/A: Add rule for git commit that reverts previous commit (#886)

This commit is contained in:
Aiden Song
2019-02-25 16:24:16 -06:00
committed by Vladimir Iakovlev
parent 2d81166213
commit 1208faaabb
3 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
import pytest
from thefuck.rules.git_commit_reset import match, get_new_command
from thefuck.types import Command
@pytest.mark.parametrize('script, output', [
('git commit -m "test"', 'test output'),
('git commit', '')])
def test_match(output, script):
assert match(Command(script, output))
@pytest.mark.parametrize('script', [
'git branch foo',
'git checkout feature/test_commit',
'git push'])
def test_not_match(script):
assert not match(Command(script, ''))
@pytest.mark.parametrize('script', [
('git commit -m "test commit"'),
('git commit')])
def test_get_new_command(script):
assert get_new_command(Command(script, '')) == 'git reset HEAD~'