ansible-borgbackup/molecule/generic_files/tests/test_all.py
2019-03-12 10:33:14 +01:00

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