2019-10-19 14:31:54 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
2021-06-07 20:28:12 +00:00
|
|
|
os.environ["MOLECULE_INVENTORY_FILE"]
|
|
|
|
).get_hosts("all")
|
2019-10-19 14:31:54 +00:00
|
|
|
|
|
|
|
|
2024-02-18 11:20:57 +00:00
|
|
|
def test_vim_installed(host):
|
2019-10-19 14:31:54 +00:00
|
|
|
vim = host.package("vim-enhanced")
|
|
|
|
assert vim.is_installed
|