0
0
mirror of https://github.com/saltstack-formulas/salt-formula.git synced 2024-12-01 10:41:15 +01:00
salt-formula/test/integration/v3000-py3/controls/pkgs_spec.rb

23 lines
375 B
Ruby
Raw Normal View History

# frozen_string_literal: true
pkgs =
case platform[:family]
when 'windows'
%w[Salt\ Minion]
else
%w[salt-master salt-minion]
end
control 'salt packages' do
title 'should be installed'
version = '3000'
pkgs.each do |p|
describe package(p) do
it { should be_installed }
its('version') { should match(/^#{version}/) }
end
end
end