2022-02-12 13:36:51 +00:00
|
|
|
import os
|
2022-03-09 21:30:12 +00:00
|
|
|
import pytest
|
2022-02-12 13:36:51 +00:00
|
|
|
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
|
|
|
os.environ["MOLECULE_INVENTORY_FILE"]
|
|
|
|
).get_hosts("all")
|
2022-03-09 21:30:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("package", ["setroubleshoot", "mcstransd", "xinetd", "ypbind", "telnet"])
|
|
|
|
def test_packages_uninstalled(host, package):
|
|
|
|
assert not host.package(package).is_installed
|