diff options
Diffstat (limited to 'test/t/test_apt_cache.py')
-rw-r--r-- | test/t/test_apt_cache.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/t/test_apt_cache.py b/test/t/test_apt_cache.py new file mode 100644 index 00000000..0cb50ef6 --- /dev/null +++ b/test/t/test_apt_cache.py @@ -0,0 +1,13 @@ +import pytest + + +@pytest.mark.bashcomp(cmd="apt-cache") +class TestAptCache: + @pytest.mark.complete("apt-cache ") + def test_1(self, completion): + assert completion + + @pytest.mark.complete("apt-cache showsrc [") + def test_2(self, completion): + # Doesn't actually fail on grep errors, but takes a long time. + assert not completion |