2019-11-10 11:28:10 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
2021-06-07 20:28:40 +00:00
|
|
|
os.environ["MOLECULE_INVENTORY_FILE"]
|
|
|
|
).get_hosts("all")
|
2019-11-10 11:28:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_facts_dir(host):
|
|
|
|
fact = host.file("/etc/ansible/facts.d")
|
|
|
|
|
|
|
|
assert fact.exists
|
2019-11-10 11:31:45 +00:00
|
|
|
assert fact.mode == 0o755
|