/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/t/test_alias.py
29 строк
854 B
Ville Skyttä
feat(alias): add option completion support
30 окт 2022, 21:24
30 окт 2022, 21:24
3ae8462
Код
Авторство
О чём код?
import pytest @pytest.mark.bashcomp( pre_cmds=("unalias -a", "alias foo=bar", "alias bar='foo foo'"), post_cmds=("unalias -a",), ) class TestAlias: @pytest.mark.complete("alias ") def test_1(self, completion): assert completion == "bar foo".split() @pytest.mark.xfail # TODO: Would like this completion to work @pytest.mark.complete("alias foo=") def test_2(self, completion): assert completion == "foo='bar'" assert not completion.endswith(" ") @pytest.mark.complete("alias ", trail="foo") def test_alias_at_point(self, completion): assert completion == "bar foo".split() @pytest.mark.complete("alias -") def test_options(self, completion): assert completion @pytest.mark.complete("alias -p ") def test_p(self, completion): assert not completion