Skip to content

Commit 188ca8a

Browse files
committed
test: add some trivial perl -E/-e cases
1 parent 1360ba9 commit 188ca8a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/t/test_perl.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,11 @@ def test_16(self, completion):
8181
)
8282
def test_17(self, completion):
8383
assert "BashCompletion" in completion
84+
85+
@pytest.mark.complete("perl -E ")
86+
def test_dash_capital_e(self, completion):
87+
assert not completion
88+
89+
@pytest.mark.complete("perl -e")
90+
def test_dash_e(self, completion):
91+
assert not completion

0 commit comments

Comments
 (0)