xoxys.docker_tidy/molecule/centos7/tests/test_default.py

15 lines
320 B
Python
Raw Normal View History

2020-03-21 11:40:49 +00:00
import os
import testinfra.utils.ansible_runner
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
2021-06-07 20:28:24 +00:00
os.environ["MOLECULE_INVENTORY_FILE"]
).get_hosts("all")
2020-03-21 11:40:49 +00:00
def test_tidy_running_and_enabled(host):
2020-03-21 13:05:43 +00:00
service = host.service("tidy.timer")
2020-03-21 11:40:49 +00:00
assert service.is_running
assert service.is_enabled