renew_consul_certificates/molecule/default/tests/test_default.py
2023-04-28 00:04:26 +02:00

9 lines
247 B
Python

"""Role testing files using testinfra."""
def test_hosts_file(host):
"""Validate /etc/hosts file."""
etc_hosts = host.file("/etc/hosts")
assert etc_hosts.exists
assert etc_hosts.user == "root"
assert etc_hosts.group == "root"