blob: d54ce6fcb3291e6a86eb4c7e874880eb91045458 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import pytest
@pytest.mark.bashcomp(ignore_env=r"^[+-]_scp_path_esc=")
class TestRsync:
@pytest.mark.complete("rsync ")
def test_1(self, completion):
assert completion
@pytest.mark.complete("rsync --rsh ")
def test_2(self, completion):
assert completion == "rsh ssh".split()
@pytest.mark.complete("rsync --rsh=")
def test_3(self, completion):
assert completion == "rsh ssh".split()
|