fc1d0b15a3
* 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)
31 lines
521 B
Ruby
31 lines
521 B
Ruby
version =
|
|
case platform[:family]
|
|
when 'redhat'
|
|
case platform[:name]
|
|
when 'amazon'
|
|
'2019.2.0-1.el7'
|
|
when 'centos'
|
|
'2019.2.0-2.el7'
|
|
end
|
|
when 'fedora'
|
|
'2019.2.0-1.fc30'
|
|
when 'suse'
|
|
'2019.2.0-lp151.5.3.1'
|
|
when 'debian'
|
|
'2019.2.0+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
|