mirror of
https://github.com/nvbn/thefuck.git
synced 2025-09-19 19:52:31 +01:00
#682: Ensure that script
exists
This commit is contained in:
30
tests/entrypoints/test_alias.py
Normal file
30
tests/entrypoints/test_alias.py
Normal file
@@ -0,0 +1,30 @@
|
||||
from mock import Mock
|
||||
import pytest
|
||||
from thefuck.entrypoints.alias import _get_alias
|
||||
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
'py2, enable_experimental_instant_mode, which, is_instant', [
|
||||
(False, True, True, True),
|
||||
(False, False, True, False),
|
||||
(False, True, False, False),
|
||||
(True, True, True, False),
|
||||
(True, True, False, False),
|
||||
(True, False, True, False)])
|
||||
def test_get_alias(monkeypatch, mocker, py2,
|
||||
enable_experimental_instant_mode,
|
||||
which, is_instant):
|
||||
monkeypatch.setattr('six.PY2', py2)
|
||||
args = Mock(
|
||||
enable_experimental_instant_mode=enable_experimental_instant_mode,
|
||||
alias='fuck', )
|
||||
mocker.patch('thefuck.entrypoints.alias.which', return_value=which)
|
||||
shell = Mock(app_alias=lambda _: 'app_alias',
|
||||
instant_mode_alias=lambda _: 'instant_mode_alias')
|
||||
monkeypatch.setattr('thefuck.entrypoints.alias.shell', shell)
|
||||
|
||||
alias = _get_alias(args)
|
||||
if is_instant:
|
||||
assert alias == 'instant_mode_alias'
|
||||
else:
|
||||
assert alias == 'app_alias'
|
Reference in New Issue
Block a user