8 lines
172 B
Python
8 lines
172 B
Python
"""Role testing files using testinfra."""
|
|
import pytest
|
|
|
|
def test_installed_packages(host):
|
|
nfs_common = host.package("nfs-common")
|
|
assert nfs_common.is_installed
|
|
|