summaryrefslogtreecommitdiff
path: root/test/t/test_kcov.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/t/test_kcov.py')
-rw-r--r--test/t/test_kcov.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/t/test_kcov.py b/test/t/test_kcov.py
new file mode 100644
index 00000000..ce985a78
--- /dev/null
+++ b/test/t/test_kcov.py
@@ -0,0 +1,16 @@
+import pytest
+
+
+class TestKcov:
+ @pytest.mark.complete("kcov ")
+ def test_1(self, completion):
+ assert completion
+
+ @pytest.mark.complete("kcov --exclude-patter")
+ def test_2(self, completion):
+ assert completion == "--exclude-pattern="
+ assert completion.endswith("=")
+
+ @pytest.mark.complete("kcov -l 42,")
+ def test_3(self, completion):
+ assert completion