/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/t/test_ri.py
16 строк
471 B
Ville Skyttä
test: simplify completion parsing
04 июн 2020, 23:58
04 июн 2020, 23:58
726e4c0
Код
Авторство
О чём код?
import pytest @pytest.mark.bashcomp(pre_cmds=("export RI='-d ri'",)) class TestRi: @pytest.mark.complete("ri -", require_cmd=True) def test_1(self, completion): assert completion @pytest.mark.complete("ri --dump=ri/") def test_2(self, completion): assert completion == "BashCompletion/ cache.ri".split() @pytest.mark.complete("ri BashCompletio", require_cmd=True) def test_3(self, completion): assert completion == "n"