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

7 lines
188 B
Python
Raw Normal View History

2019-03-12 09:33:14 +00:00
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