diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:18 +0000 |
commit | f2621414ee5f2f601424c22f00e207903e3b6104 (patch) | |
tree | 56a856dafd1ca684bb23263cacaa723ee4f404fc /test/t/test_ssh.py | |
parent | Adding debian version 1:2.11-8. (diff) | |
download | bash-completion-f2621414ee5f2f601424c22f00e207903e3b6104.tar.xz bash-completion-f2621414ee5f2f601424c22f00e207903e3b6104.zip |
Merging upstream version 1:2.12.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/t/test_ssh.py')
-rw-r--r-- | test/t/test_ssh.py | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/test/t/test_ssh.py b/test/t/test_ssh.py index 8e95819..f714d99 100644 --- a/test/t/test_ssh.py +++ b/test/t/test_ssh.py @@ -10,8 +10,12 @@ class TestSsh: @pytest.mark.complete("ssh -F config ls", cwd="ssh") def test_2(self, completion): - """Should complete both commands and hostname.""" - assert all(x in completion for x in "ls ls_known_host".split()) + """ + Should not complete commands when host is not specified. + + Test sanity assumes there are commands starting with `ls`. + """ + assert completion == "_known_host" @pytest.mark.complete("ssh bash", cwd="ssh") def test_3(self, completion): @@ -58,3 +62,8 @@ class TestSsh: def test_protocol_option_bundling(self, bash, protocol): completion = assert_complete(bash, "ssh -%sF ssh/" % protocol) assert "config" in completion + + @pytest.mark.complete("ssh -F config -o ForwardX11=yes ls", cwd="ssh") + def test_options_with_args_and_arg_counting(self, completion): + """Options with arguments should not confuse arg counting.""" + assert completion == "_known_host" |