xoxys.nginx/molecule/gce-centos-7/tests/test_default.py

15 lines
312 B
Python
Raw Normal View History

2019-02-27 10:37:29 +01:00
import os
import testinfra.utils.ansible_runner
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all')
def test_hosts_file(host):
f = host.file('/etc/hosts')
assert f.exists
assert f.user == 'root'
2019-02-28 09:07:14 +01:00
assert f.group == 'xxx'