summaryrefslogtreecommitdiff
path: root/test/t/test_grep.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/t/test_grep.py')
-rw-r--r--test/t/test_grep.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/t/test_grep.py b/test/t/test_grep.py
new file mode 100644
index 00000000..d7d742ec
--- /dev/null
+++ b/test/t/test_grep.py
@@ -0,0 +1,16 @@
+import pytest
+
+
+class TestGrep:
+ @pytest.mark.complete("grep --")
+ def test_1(self, completion):
+ assert completion
+
+ @pytest.mark.complete("grep --no-complete-dir f", cwd="shared/default")
+ def test_2(self, completion):
+ """
+ Test --no-*dir isn't restricted to dirs only.
+
+ Not really a grep option, but tests _longopt.
+ """
+ assert completion == "foo foo.d/".split()