xoxys.facts/molecule/centos7/tests/test_default.py

19 lines
383 B
Python
Raw Normal View History

2019-11-10 12:28:10 +01:00
import os
import testinfra.utils.ansible_runner
import warnings
2019-11-10 12:28:10 +01:00
warnings.filterwarnings("ignore", category=DeprecationWarning)
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ['MOLECULE_INVENTORY_FILE']
).get_hosts('all')
2019-11-10 12:28:10 +01:00
def test_facts_dir(host):
fact = host.file("/etc/ansible/facts.d")
assert fact.exists
2019-11-10 12:31:45 +01:00
assert fact.mode == 0o755