2019-09-16 12:15:59 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
2021-06-07 20:28:57 +00:00
|
|
|
os.environ["MOLECULE_INVENTORY_FILE"]
|
|
|
|
).get_hosts("all")
|
2019-09-16 12:15:59 +00:00
|
|
|
|
|
|
|
|
2019-10-16 06:52:46 +00:00
|
|
|
def test_dnsmasq_is_installed(host):
|
|
|
|
dnsmasq = host.package("dnsmasq")
|
|
|
|
assert dnsmasq.is_installed
|
|
|
|
|
2019-09-16 12:15:59 +00:00
|
|
|
|
2019-10-16 06:52:46 +00:00
|
|
|
def test_dnsmasq_running_and_enabled(host):
|
|
|
|
dnsmasq = host.service("dnsmasq")
|
|
|
|
assert dnsmasq.is_running
|
|
|
|
assert dnsmasq.is_enabled
|