We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b056568 commit f14c4d0Copy full SHA for f14c4d0
test/t/test_time.py
@@ -14,9 +14,11 @@ def test_command(self, completion):
14
"""
15
assert completion == "ed" or "_comp_delimited" in completion
16
17
- @pytest.mark.complete("time -p find -typ")
+ @pytest.mark.complete(
18
+ "time -p bash --", skipif="! bash --help &>/dev/null"
19
+ )
20
def test_2(self, completion):
- assert completion # find's options
21
+ assert "--login" in completion # bash's options
22
23
@pytest.mark.complete("time shared/bin/")
24
def test_3(self, completion):
0 commit comments