[ANSIBLE] Drop shell completion code generation in 'cert-manager' role
[oom/offline-installer.git] / ansible / roles / cert-manager / molecule / default / tests / test_default.py
1 def test_helm_value_file(host):
2     f = host.file('/opt/onap/cert_manager.yaml')
3     assert f.exists
4     assert f.user == 'root'
5     assert f.group == 'root'
6     assert f.content_string.strip() == "installCRDs: true"
7
8
9 def test_cmctl(host):
10     f = host.file('/usr/local/bin/cmctl')
11     assert f.exists
12     assert f.user == 'root'
13     assert f.group == 'root'
14     assert host.run('cmctl').rc == 0