diff options
Diffstat (limited to 'test/t/test_slapt_get.py')
-rw-r--r-- | test/t/test_slapt_get.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/t/test_slapt_get.py b/test/t/test_slapt_get.py new file mode 100644 index 00000000..1254d5b4 --- /dev/null +++ b/test/t/test_slapt_get.py @@ -0,0 +1,16 @@ +import pytest + + +@pytest.mark.bashcomp(cmd="slapt-get") +class TestSlaptGet: + @pytest.mark.complete("slapt-get -") + def test_1(self, completion): + assert completion + + @pytest.mark.complete("slapt-get --up") + def test_2(self, completion): + assert completion == "--update --upgrade".split() + + @pytest.mark.complete("slapt-get -c non-existent-file --install ") + def test_3(self, completion): + assert not completion |