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

19 lines
400 B
Python
Raw Normal View History

2022-03-18 19:07:25 +01:00
import os
import testinfra.utils.ansible_runner
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ["MOLECULE_INVENTORY_FILE"]
).get_hosts("all")
2022-03-18 19:13:22 +01:00
def test_podman_installed(host):
assert host.package("podman").is_installed
2022-03-18 19:13:22 +01:00
def test_podman_run(host):
cmd = host.run("/usr/bin/podman info")
assert "cgroupVersion: v2" in cmd.stdout
2022-03-18 19:13:22 +01:00
assert cmd.succeeded