Robert Kaussow
92b4839bfc
All checks were successful
continuous-integration/drone/push Build is passing
24 lines
523 B
Python
24 lines
523 B
Python
import os
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
|
os.environ["MOLECULE_INVENTORY_FILE"]
|
|
).get_hosts("all")
|
|
|
|
|
|
def test_yum_cron_is_installed(host):
|
|
yum = host.package("yum-cron")
|
|
assert yum.is_installed
|
|
|
|
|
|
def test_yum_cron_running_and_enabled(host):
|
|
yum = host.service("yum-cron")
|
|
assert yum.is_running
|
|
assert yum.is_enabled
|
|
|
|
|
|
def test_yum_cron_custom_cronjob(host):
|
|
custom = host.file("/etc/cron.d/x-yum")
|
|
assert custom.exists
|