summaryrefslogtreecommitdiff
path: root/test/t/test_removepkg.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/t/test_removepkg.py')
-rw-r--r--test/t/test_removepkg.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/t/test_removepkg.py b/test/t/test_removepkg.py
new file mode 100644
index 00000000..9fd7a9d8
--- /dev/null
+++ b/test/t/test_removepkg.py
@@ -0,0 +1,15 @@
+import os
+
+import pytest
+
+
+@pytest.mark.bashcomp(ignore_env=r"^\+ROOT=")
+class TestRemovepkg:
+ @pytest.mark.complete("removepkg -")
+ def test_1(self, completion):
+ assert completion == "-copy -keep -preserve -warn".split()
+
+ @pytest.mark.complete("removepkg ", env=dict(ROOT="./slackware"))
+ def test_2(self, completion):
+ files = sorted(x for x in os.listdir("slackware/var/log/packages"))
+ assert completion == files