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

13 lines
274 B
Python
Raw Normal View History

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