ansible-borgbackup/molecule/generic_files/tests/test_all.py

7 lines
188 B
Python

def test_borg_binary(host):
borg = host.file("/usr/local/bin/borg")
assert borg.exists
assert borg.user == "root"
assert borg.group == "root"
assert borg.mode == 0o755