2
0
salt-formula/test/integration/v201902-py2/controls/pkgs_spec.rb

24 lines
379 B
Ruby
Raw Normal View History

# frozen_string_literal: true
version =
case platform[:family]
when 'redhat'
2020-01-24 00:51:05 +01:00
'2019.2.3-1.el7'
when 'debian'
2020-01-24 00:51:05 +01:00
'2019.2.3+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