/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/t/test_mkdir.py
21 строка
676 B
Ville Skyttä
test: fix incorrect fixtures/shared/default xfails/expectations
06 май 2020, 22:28
06 май 2020, 22:28
f0fe52c
Код
Авторство
О чём код?
import pytest class TestMkdir: @pytest.mark.complete("mkdir ") def test_1(self, completion): assert completion @pytest.mark.complete("mkdir ", cwd="shared/default") def test_2(self, completion): assert completion == ["bar", "bar bar.d/", "foo", "foo.d/"] @pytest.mark.xfail # TODO: why path in completion, basename in .output? @pytest.mark.complete("mkdir shared/default/foo.d/") def test_3(self, completion): assert completion.output == "foo" assert completion == [completion.output] @pytest.mark.complete("mkdir -", require_longopt=True) def test_options(self, completion): assert completion