2015-05-27 15:38:46 +08:00
|
|
|
import pytest
|
|
|
|
from thefuck.rules.javac import match, get_new_command
|
2017-08-31 17:58:56 +02:00
|
|
|
from thefuck.types import Command
|
2015-05-27 15:38:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('command', [
|
2017-08-31 17:58:56 +02:00
|
|
|
Command('javac foo', ''),
|
|
|
|
Command('javac bar', '')])
|
2015-05-27 15:38:46 +08:00
|
|
|
def test_match(command):
|
2015-09-07 13:00:29 +03:00
|
|
|
assert match(command)
|
2015-05-27 15:38:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('command, new_command', [
|
2017-08-31 17:58:56 +02:00
|
|
|
(Command('javac foo', ''), 'javac foo.java'),
|
|
|
|
(Command('javac bar', ''), 'javac bar.java')])
|
2015-05-27 15:38:46 +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
|