2015-07-20 18:42:05 +02:00
|
|
|
import pytest
|
|
|
|
from thefuck.rules.git_pull_clone import match, get_new_command
|
2017-08-31 17:58:56 +02:00
|
|
|
from thefuck.types import Command
|
2015-07-20 18:42:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
git_err = '''
|
|
|
|
fatal: Not a git repository (or any parent up to mount point /home)
|
|
|
|
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('command', [
|
2017-08-31 17:58:56 +02:00
|
|
|
Command('git pull git@github.com:mcarton/thefuck.git', git_err)])
|
2015-07-20 18:42:05 +02:00
|
|
|
def test_match(command):
|
2015-09-07 13:00:29 +03:00
|
|
|
assert match(command)
|
2015-07-20 18:42:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('command, output', [
|
2017-08-31 17:58:56 +02:00
|
|
|
(Command('git pull git@github.com:mcarton/thefuck.git', git_err), 'git clone git@github.com:mcarton/thefuck.git')])
|
2015-07-20 18:42:05 +02:00
|
|
|
def test_get_new_command(command, output):
|
2015-09-07 13:00:29 +03:00
|
|
|
assert get_new_command(command) == output
|