prometheus-formula/test/integration/default/controls/services_spec.rb
2019-04-25 22:14:39 +02:00

10 lines
190 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 }
end
end