mirror of
https://github.com/nvbn/thefuck.git
synced 2025-10-31 23:22:10 +00:00
#N/A: Add conda rule (#1138)
* add conda rules * revert * add conda * add to readme and flake * consistency with quotes and use for_app * Update thefuck/rules/conda_mistype.py Co-authored-by: Pablo Aguiar <scorphus@gmail.com>
This commit is contained in:
24
tests/rules/test_conda_mistype.py
Normal file
24
tests/rules/test_conda_mistype.py
Normal file
@@ -0,0 +1,24 @@
|
||||
import pytest
|
||||
|
||||
from thefuck.rules.conda_mistype import match, get_new_command
|
||||
from thefuck.types import Command
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def mistype_response():
|
||||
return """
|
||||
|
||||
CommandNotFoundError: No command 'conda lst'.
|
||||
Did you mean 'conda list'?
|
||||
|
||||
"""
|
||||
|
||||
|
||||
def test_match(mistype_response):
|
||||
assert match(Command('conda lst', mistype_response))
|
||||
err_response = 'bash: codna: command not found'
|
||||
assert not match(Command('codna list', err_response))
|
||||
|
||||
|
||||
def test_get_new_command(mistype_response):
|
||||
assert (get_new_command(Command('conda lst', mistype_response)) == ['conda list'])
|
||||
Reference in New Issue
Block a user