mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-19 04:21:14 +00:00
28 lines
659 B
Python
28 lines
659 B
Python
import pytest
|
|
|
|
from thefuck.types import Command
|
|
from thefuck.rules.git_push_without_commits import (
|
|
fix,
|
|
get_new_command,
|
|
match,
|
|
)
|
|
|
|
command = 'git push -u origin master'
|
|
expected_error = '''
|
|
error: src refspec master does not match any.
|
|
error: failed to push some refs to 'git@github.com:User/repo.git'
|
|
'''
|
|
|
|
|
|
@pytest.mark.parametrize('command', [Command(command, expected_error)])
|
|
def test_match(command):
|
|
assert match(command)
|
|
|
|
|
|
@pytest.mark.parametrize('command, result', [(
|
|
Command(command, expected_error),
|
|
fix.format(command=command),
|
|
)])
|
|
def test_get_new_command(command, result):
|
|
assert get_new_command(command) == result
|