diff options
Diffstat (limited to 'test/t/test_rsync.py')
-rw-r--r-- | test/t/test_rsync.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/t/test_rsync.py b/test/t/test_rsync.py index d54ce6f..0f98dcc 100644 --- a/test/t/test_rsync.py +++ b/test/t/test_rsync.py @@ -1,7 +1,7 @@ import pytest -@pytest.mark.bashcomp(ignore_env=r"^[+-]_scp_path_esc=") +@pytest.mark.bashcomp(ignore_env=r"^[+-]_comp_cmd_scp__path_esc=") class TestRsync: @pytest.mark.complete("rsync ") def test_1(self, completion): @@ -14,3 +14,7 @@ class TestRsync: @pytest.mark.complete("rsync --rsh=") def test_3(self, completion): assert completion == "rsh ssh".split() + + @pytest.mark.complete("rsync --", require_cmd=True) + def test_4(self, completion): + assert "--help" in completion |