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

12 lines
228 B
Ruby
Raw Normal View History

control 'Prometheus package' do
title 'should be installed'
describe package('prometheus') do
it { should be_installed }
end
2019-04-26 13:09:43 +02:00
describe package('prometheus-node-exporter') do
it { should be_installed }
end
end