2
0
salt-formula/test/integration/default/pkgs_spec.rb

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