2015-06-02 13:18:13 +08:00
|
|
|
import pytest
|
|
|
|
from thefuck.rules.quotation_marks import match, get_new_command
|
|
|
|
from tests.utils import Command
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('command', [
|
2015-06-26 14:08:25 +02:00
|
|
|
Command(script="git commit -m \'My Message\""),
|
2015-06-02 13:18:13 +08:00
|
|
|
Command(script="git commit -am \"Mismatched Quotation Marks\'"),
|
|
|
|
Command(script="echo \"hello\'")])
|
|
|
|
def test_match(command):
|
2015-09-07 13:00:29 +03:00
|
|
|
assert match(command)
|
2015-06-02 13:18:13 +08:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('command, new_command', [
|
2015-06-26 14:08:25 +02:00
|
|
|
(Command("git commit -m \'My Message\""), "git commit -m \"My Message\""),
|
2015-06-02 13:18:13 +08:00
|
|
|
(Command("git commit -am \"Mismatched Quotation Marks\'"), "git commit -am \"Mismatched Quotation Marks\""),
|
|
|
|
(Command("echo \"hello\'"), "echo \"hello\"")])
|
|
|
|
def test_get_new_command(command, new_command):
|
2015-09-07 13:00:29 +03:00
|
|
|
assert get_new_command(command) == new_command
|