prometheus-formula/test/integration/default/controls/services_spec.rb

10 lines
190 B
Ruby
Raw Normal View History

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