2019-08-25 18:18:43 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
2021-06-07 20:28:28 +00:00
|
|
|
os.environ["MOLECULE_INVENTORY_FILE"]
|
|
|
|
).get_hosts("all")
|
2019-08-25 18:18:43 +00:00
|
|
|
|
|
|
|
|
2019-10-18 12:50:04 +00:00
|
|
|
def test_incron_is_installed(host):
|
|
|
|
incron = host.package("incron")
|
|
|
|
assert incron.is_installed
|
|
|
|
|
2019-08-25 18:18:43 +00:00
|
|
|
|
2019-10-18 12:50:04 +00:00
|
|
|
def test_incron_running_and_enabled(host):
|
|
|
|
incron = host.service("incrond")
|
|
|
|
assert incron.is_running
|
|
|
|
assert incron.is_enabled
|