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 8b65327 commit a50f201Copy full SHA for a50f201
test/t/test_chflags.py
@@ -7,14 +7,13 @@ def test_basic(self, completion):
7
assert completion
8
9
@pytest.mark.complete("chflags -")
10
- def test_basic(self, completion):
+ def test_options(self, completion):
11
assert completion and "-P" not in completion
12
13
@pytest.mark.complete("chflags -R -")
14
+ def test_options_after_R(self, completion):
15
assert "-P" in completion
16
17
@pytest.mark.complete("chflags -v sappend ")
18
+ def test_first_word(self, completion):
19
20
-
0 commit comments