xoxys.certbot/molecule/centos8/tests/test_default.py
Robert Kaussow c3d1ce24d7
All checks were successful
continuous-integration/drone/pr Build is passing
refator role
2020-04-19 23:27:41 +02:00

15 lines
363 B
Python

import os
import testinfra.utils.ansible_runner
import warnings
warnings.filterwarnings("ignore", category=DeprecationWarning)
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all')
def test_certbot_is_installed(host):
certbot = host.package("certbot")
assert certbot.is_installed