xoxys.dnsmasq/molecule/default/tests/test_default.py

19 lines
425 B
Python
Raw Normal View History

2019-09-16 14:15:59 +02:00
import os
import testinfra.utils.ansible_runner
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
2021-06-07 22:28:57 +02:00
os.environ["MOLECULE_INVENTORY_FILE"]
).get_hosts("all")
2019-09-16 14:15:59 +02:00
2024-02-19 10:43:05 +01:00
def test_dnsmasq_installed(host):
2019-10-16 08:52:46 +02:00
dnsmasq = host.package("dnsmasq")
assert dnsmasq.is_installed
2019-09-16 14:15:59 +02:00
2019-10-16 08:52:46 +02:00
def test_dnsmasq_running_and_enabled(host):
dnsmasq = host.service("dnsmasq")
assert dnsmasq.is_running
assert dnsmasq.is_enabled