0
0
mirror of https://github.com/saltstack-formulas/salt-formula.git synced 2024-12-01 02:05:33 +01:00
salt-formula/test/integration/v201803-py2/controls/pkgs_spec.rb

24 lines
379 B
Ruby

# frozen_string_literal: true
version =
case platform[:family]
when 'redhat'
'2018.3.5-1.el7'
when 'debian'
'2018.3.5+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