summaryrefslogtreecommitdiffstats
path: root/test/t/test_scp.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:18 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:18 +0000
commitf2621414ee5f2f601424c22f00e207903e3b6104 (patch)
tree56a856dafd1ca684bb23263cacaa723ee4f404fc /test/t/test_scp.py
parentAdding debian version 1:2.11-8. (diff)
downloadbash-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_scp.py')
-rw-r--r--test/t/test_scp.py20
1 files changed, 19 insertions, 1 deletions
diff --git a/test/t/test_scp.py b/test/t/test_scp.py
index 66b8da2..3bd06ee 100644
--- a/test/t/test_scp.py
+++ b/test/t/test_scp.py
@@ -76,4 +76,22 @@ class TestScp:
Connection to it must open sufficiently quickly for the
ConnectTimeout and sleep_after_tab settings.
"""
- assert completion == "%s:%s/" % (LIVE_HOST, live_pwd)
+ assert completion == f"{LIVE_HOST}:{live_pwd}/"
+
+ @pytest.mark.complete("scp -o Foo=")
+ def test_option_arg(self, completion):
+ assert not completion # and no errors either
+
+ @pytest.mark.complete(
+ "scp hostname-not-expected-to-exist-in-known-hosts:",
+ shopt=dict(nullglob=True),
+ )
+ def test_remote_path_with_nullglob(self, completion):
+ assert not completion
+
+ @pytest.mark.complete(
+ "scp hostname-not-expected-to-exist-in-known-hosts:",
+ shopt=dict(failglob=True),
+ )
+ def test_remote_path_with_failglob(self, completion):
+ assert not completion