mirror of
https://github.com/nvbn/thefuck.git
synced 2025-01-19 04:21:14 +00:00
6cf430cc23
If there's no argument to man, a call to thefuck should just give no fuck. Signed-off-by: Pablo Santiago Blum de Aguiar <scorphus@gmail.com>
35 lines
1019 B
Python
35 lines
1019 B
Python
import pytest
|
|
from thefuck.rules.man import match, get_new_command
|
|
from tests.utils import Command
|
|
|
|
|
|
@pytest.mark.parametrize('command', [
|
|
Command('man read'),
|
|
Command('man 2 read'),
|
|
Command('man 3 read'),
|
|
Command('man -s2 read'),
|
|
Command('man -s3 read'),
|
|
Command('man -s 2 read'),
|
|
Command('man -s 3 read')])
|
|
def test_match(command):
|
|
assert match(command, None)
|
|
|
|
|
|
@pytest.mark.parametrize('command', [
|
|
Command('man'),
|
|
Command('man ')])
|
|
def test_not_match(command):
|
|
assert not match(command, None)
|
|
|
|
|
|
@pytest.mark.parametrize('command, new_command', [
|
|
(Command('man read'), 'man 3 read'),
|
|
(Command('man 2 read'), 'man 3 read'),
|
|
(Command('man 3 read'), 'man 2 read'),
|
|
(Command('man -s2 read'), 'man -s3 read'),
|
|
(Command('man -s3 read'), 'man -s2 read'),
|
|
(Command('man -s 2 read'), 'man -s 3 read'),
|
|
(Command('man -s 3 read'), 'man -s 2 read')])
|
|
def test_get_new_command(command, new_command):
|
|
assert get_new_command(command, None) == new_command
|