summaryrefslogtreecommitdiff
path: root/test/t/test_less.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/t/test_less.py')
-rw-r--r--test/t/test_less.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/t/test_less.py b/test/t/test_less.py
index 0b14e21e..70833c34 100644
--- a/test/t/test_less.py
+++ b/test/t/test_less.py
@@ -5,3 +5,7 @@ class TestLess:
@pytest.mark.complete("less --", require_longopt=True)
def test_1(self, completion):
assert completion
+
+ @pytest.mark.complete("less --", require_longopt=True)
+ def test_no_dashdashdash(self, completion):
+ assert all(not x.startswith("---") for x in completion)