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', [
|
2015-06-26 14:08:25 +02:00
|
|
|
Command(script='brew upgrade')])
|
2015-06-02 13:23:34 +08:00
|
|
|
def test_match(command):
|
2015-06-26 14:08:25 +02:00
|
|
|
assert match(command, None)
|
2015-06-02 13:23:34 +08:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('command, new_command', [
|
2015-06-26 14:08:25 +02:00
|
|
|
(Command('brew upgrade'), 'brew upgrade --all')])
|
2015-06-02 13:23:34 +08:00
|
|
|
def test_get_new_command(command, new_command):
|
2015-06-26 14:08:25 +02:00
|
|
|
assert get_new_command(command, None) == new_command
|