fix1
This commit is contained in:
13
ansible_role/molecule/default/tests/test_default.py
Normal file
13
ansible_role/molecule/default/tests/test_default.py
Normal file
@@ -0,0 +1,13 @@
|
||||
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'
|
||||
assert f.group == 'root'
|
||||
Reference in New Issue
Block a user