prometheus-formula/test/integration/default/controls/packages_spec.rb
2019-04-29 13:54:40 +02:00

12 lines
228 B
Ruby

control 'Prometheus package' do
title 'should be installed'
describe package('prometheus') do
it { should be_installed }
end
describe package('prometheus-node-exporter') do
it { should be_installed }
end
end