blob: bb43defb5916d8cdcdcc9567d81f18ee8fead6c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
from __future__ import (absolute_import, division, print_function)
import os
import testinfra.utils.ansible_runner
__metaclass__ = type
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all')
def test_service(host):
service = host.service('docker')
assert service.is_running
assert service.is_enabled
def test_hosts_file(host):
f = host.file('/etc/hosts')
assert f.exists
assert f.user == 'root'
assert f.group == 'root'
|