1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-14 06:38:32 +00:00

Remove test for get_new_command

This commit is contained in:
gkodosis 2020-07-03 16:43:03 +03:00
parent 3505680869
commit 771a6b5ca1
4 changed files with 0 additions and 40 deletions

View File

@ -25,13 +25,3 @@ def test_match(script, goenv_cmd, output):
])
def test_not_match(script, output):
assert not match(Command(script, output=output))
@pytest.mark.parametrize('script, goenv_cmd, result', [
('goenv globe', 'globe', 'goenv global'),
('goenv intall 1.4.0', 'intall', 'goenv install 1.4.0'),
('goenv list', 'list', 'goenv install --list'),
('goenv remove 1.4.0', 'remove', 'goenv uninstall 1.4.0'),
])
def test_get_new_command(script, goenv_cmd, output, result):
assert result in get_new_command(Command(script, output))

View File

@ -25,13 +25,3 @@ def test_match(script, nodenv_cmd, output):
])
def test_not_match(script, output):
assert not match(Command(script, output=output))
@pytest.mark.parametrize('script, nodenv_cmd, result', [
('nodenv globe', 'globe', 'nodenv global'),
('nodenv intall 3.8.0', 'intall', 'nodenv install 3.8.0'),
('nodenv list', 'list', 'nodenv install --list'),
('nodenv remove 3.8.0', 'remove', 'nodenv uninstall 3.8.0'),
])
def test_get_new_command(script, nodenv_cmd, output, result):
assert result in get_new_command(Command(script, output))

View File

@ -25,13 +25,3 @@ def test_match(script, pyenv_cmd, output):
])
def test_not_match(script, output):
assert not match(Command(script, output=output))
@pytest.mark.parametrize('script, pyenv_cmd, result', [
('pyenv globe', 'globe', 'pyenv global'),
('pyenv intall 3.8.0', 'intall', 'pyenv install 3.8.0'),
('pyenv list', 'list', 'pyenv install --list'),
('pyenv remove 3.8.0', 'remove', 'pyenv uninstall 3.8.0'),
])
def test_get_new_command(script, pyenv_cmd, output, result):
assert result in get_new_command(Command(script, output))

View File

@ -25,13 +25,3 @@ def test_match(script, rbenv_cmd, output):
])
def test_not_match(script, output):
assert not match(Command(script, output=output))
@pytest.mark.parametrize('script, rbenv_cmd, result', [
('rbenv globe', 'globe', 'rbenv global'),
('rbenv intall 3.8.0', 'intall', 'rbenv install 3.8.0'),
('rbenv list', 'list', 'rbenv install --list'),
('rbenv remove 3.8.0', 'remove', 'rbenv uninstall 3.8.0'),
])
def test_get_new_command(script, rbenv_cmd, output, result):
assert result in get_new_command(Command(script, output))