summaryrefslogtreecommitdiffstats
path: root/ansible/roles/nexus/molecule/default/tests/test_default.py
blob: ede531504ef16b506ba13aff1ceae69567a93f74 (plain)
1
2
3
4
5
6
7
8
9
10
11
def test_dir(host):
    f = host.file('/nexus_data')
    assert f.exists
    assert f.is_directory
    assert f.uid == 200
    assert f.gid == 200


def test_nexus_container(host):
    c = host.docker('nexus')
    assert c.is_running