0
0
mirror of https://github.com/saltstack-formulas/salt-formula.git synced 2025-03-01 21:35:13 +01:00

12 lines
211 B
Ruby
Raw Normal View History

control 'salt packages' do
title 'should be installed'
describe package('salt-master') do
it { should be_installed }
end
describe package('salt-minion') do
it { should be_installed }
end
end