From f2621414ee5f2f601424c22f00e207903e3b6104 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 03:03:18 +0200 Subject: Merging upstream version 1:2.12.0. Signed-off-by: Daniel Baumann --- test/t/test_scp.py | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'test/t/test_scp.py') 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 -- cgit v1.2.3