mirror of
https://github.com/atosatto/ansible-minio.git
synced 2024-12-04 13:13:59 +01:00
14 lines
285 B
Python
14 lines
285 B
Python
import os
|
|
import testinfra.utils.ansible_runner
|
|
|
|
|
|
testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner(
|
|
os.environ['MOLECULE_INVENTORY_FILE']).get_hosts('all')
|
|
|
|
|
|
def test_minio_service(host):
|
|
|
|
s = host.service('minio')
|
|
assert s.is_running
|
|
assert s.is_enabled
|