1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-01-19 12:24:29 +00:00
thefuck/tests/rules/test_brew_upgrade.py

16 lines
442 B
Python
Raw Normal View History

2015-06-02 13:23:34 +08:00
import pytest
from thefuck.rules.brew_upgrade import match, get_new_command
from tests.utils import Command
@pytest.mark.parametrize('command', [
Command(script='brew upgrade')])
2015-06-02 13:23:34 +08:00
def test_match(command):
assert match(command)
2015-06-02 13:23:34 +08:00
@pytest.mark.parametrize('command, new_command', [
(Command('brew upgrade'), 'brew upgrade --all')])
2015-06-02 13:23:34 +08:00
def test_get_new_command(command, new_command):
assert get_new_command(command) == new_command