14 lines
294 B
Python
14 lines
294 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_sd_timer_valid_and_enabled(host):
|
||
|
service = host.service("pve_sd.timer")
|
||
|
|
||
|
assert service.is_enabled
|