/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/t/test_dot.py
15 строк
381 B
Koichi Murase
feat(dot): support filename extension .gv
19 фев 2024, 08:34
19 фев 2024, 08:34
be0010e
Код
Авторство
О чём код?
import pytest class TestDot: @pytest.mark.complete("dot ") def test_1(self, completion): assert completion @pytest.mark.complete("dot t", cwd="dot") def test_2(self, completion): assert completion == ["test1.gv", "test2.dot"] @pytest.mark.complete("dot test1", cwd="dot") def test_3(self, completion): assert completion == ".gv"