/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/t/test_iconv.py
21 строка
529 B
Ville Skyttä
test: mark more tests that parse command output as requiring command
13 июл 2019, 11:49
13 июл 2019, 11:49
503143b
Код
Авторство
О чём код?
import pytest class TestIconv: @pytest.mark.complete( "iconv -", require_cmd=True, xfail="! iconv --help &>/dev/null" ) def test_1(self, completion): assert completion @pytest.mark.complete("iconv -f UTF", require_cmd=True) def test_2(self, completion): assert completion @pytest.mark.complete("iconv ") def test_3(self, completion): assert completion @pytest.mark.complete("iconv -f ") def test_4(self, completion): assert "..." not in completion