summaryrefslogtreecommitdiffstats
path: root/test/t/test_kdvi.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/t/test_kdvi.py')
-rw-r--r--test/t/test_kdvi.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/t/test_kdvi.py b/test/t/test_kdvi.py
new file mode 100644
index 0000000..c2ab011
--- /dev/null
+++ b/test/t/test_kdvi.py
@@ -0,0 +1,10 @@
+import pytest
+
+
+class TestKdvi:
+ @pytest.mark.complete("kdvi ", cwd="kdvi")
+ def test_1(self, completion):
+ assert completion == sorted(
+ "foo/ .dvi .DVI .dvi.bz2 .DVI.bz2 .dvi.gz "
+ ".DVI.gz .dvi.Z .DVI.Z".split()
+ )