/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/t/test_complete.py
11 строк
239 B
Ville Skyttä
*: complete commands when prefixed with a backslash
11 дек 2019, 22:54
11 дек 2019, 22:54
1e029e8
Код
Авторство
О чём код?
import pytest class TestComplete: @pytest.mark.complete("complete -") def test_1(self, completion): assert completion @pytest.mark.complete(r"\complete -") def test_2(self, completion): assert completion