/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/t/test_bsdtar.py
11 строк
344 B
Ville Skyttä
bsdtar: complete more libarchive formats
30 ноя 2020, 00:22
30 ноя 2020, 00:22
7481510
Код
Авторство
О чём код?
import pytest class TestBsdtar: @pytest.mark.complete("bsdtar xf bsdtar/") def test_readable_archives(self, completion): assert completion == "test.pax test.rar".split() @pytest.mark.complete("bsdtar uf bsdtar/") def test_writable_archives(self, completion): assert completion == "test.pax test.shar".split()