2015-06-21 09:24:27 +08:00
|
|
|
import pytest
|
2015-06-26 14:37:44 +02:00
|
|
|
from thefuck.rules.python_execute import match, get_new_command
|
2015-06-21 09:24:27 +08:00
|
|
|
from tests.utils import Command
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('command', [
|
2015-06-26 14:08:25 +02:00
|
|
|
Command(script='python foo'),
|
|
|
|
Command(script='python bar')])
|
2015-06-21 09:24:27 +08:00
|
|
|
def test_match(command):
|
2015-09-07 13:00:29 +03:00
|
|
|
assert match(command)
|
2015-06-21 09:24:27 +08:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('command, new_command', [
|
2015-06-26 14:08:25 +02:00
|
|
|
(Command('python foo'), 'python foo.py'),
|
|
|
|
(Command('python bar'), 'python bar.py')])
|
2015-06-21 09:24:27 +08:00
|
|
|
def test_get_new_command(command, new_command):
|
2015-09-07 13:00:29 +03:00
|
|
|
assert get_new_command(command) == new_command
|