0
0
mirror of https://github.com/saltstack-formulas/salt-formula.git synced 2024-12-12 16:21:21 +01:00
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