prometheus-formula/test/integration/default/controls/services_spec.rb
2019-06-23 17:33:48 +01:00

11 lines
223 B
Ruby

control 'Prometheus service' do
impact 0.5
title 'should be running and enabled'
describe service('prometheus') do
it { should be_enabled }
#it { should be_running } #some ubuntu 16.05 image issue
end
end