xoxys.certbot/molecule/ec2-centos-7/tests/test_default.py
Robert Kaussow 6a1f1e325e
Some checks failed
continuous-integration/drone/push Build is failing
enable molecule
2019-09-18 15:28:46 +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