mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-18 20:11:17 +00:00
25 lines
702 B
Python
25 lines
702 B
Python
import pytest
|
|
from thefuck.rules.git_remote_delete import get_new_command, match
|
|
from thefuck.types import Command
|
|
|
|
|
|
def test_match():
|
|
assert match(Command('git remote delete foo', ''))
|
|
|
|
|
|
@pytest.mark.parametrize('command', [
|
|
Command('git remote remove foo', ''),
|
|
Command('git remote add foo', ''),
|
|
Command('git commit', '')
|
|
])
|
|
def test_not_match(command):
|
|
assert not match(command)
|
|
|
|
|
|
@pytest.mark.parametrize('command, new_command', [
|
|
(Command('git remote delete foo', ''), 'git remote remove foo'),
|
|
(Command('git remote delete delete', ''), 'git remote remove delete'),
|
|
])
|
|
def test_get_new_command(command, new_command):
|
|
assert get_new_command(command) == new_command
|