0
0
mirror of https://github.com/saltstack-formulas/salt-formula.git synced 2024-12-04 18:25:37 +01:00
salt-formula/test/integration/v201803-py2/controls/pkgs_spec.rb
Imran Iqbal fc1d0b15a3
refactor(kitchen+travis+inspec): use pre-salted images
* Semi-automated using https://github.com/myii/ssf-formula/pull/36
* Restructure all tests according to updated test suites
* Improve tests where necessary (code style, new platforms and package versions)
2019-09-19 02:20:18 +01:00

22 lines
348 B
Ruby

version =
case platform[:family]
when 'redhat'
'2018.3.4-1.el7'
when 'debian'
'2018.3.4+ds-1'
end
control 'salt packages' do
title 'should be installed'
%w(
salt-master
salt-minion
).each do |p|
describe package(p) do
it { should be_installed }
its('version') { should eq version }
end
end
end