[MOLECULE] Add testinfra test to nexus role
[oom/offline-installer.git] / ansible / roles / nexus / molecule / default / tests / test_default.py
1 def test_dir(host):
2     f = host.file('/nexus_data')
3     assert f.exists
4     assert f.is_directory
5     assert f.uid == 200
6     assert f.gid == 200
7
8
9 def test_nexus_container(host):
10     c = host.docker('nexus')
11     assert c.is_running