f64197ada4
``` Offenses: test/integration/v3000-py2/controls/pkgs_spec.rb:10:5: C: [Correctable] Style/WordArray: Use ['Salt Minion'] for an array of words. (https://rubystyle.guide#percent-w) %w[Salt\ Minion] ^^^^^^^^^^^^^^^^ test/integration/v3000-py3/controls/pkgs_spec.rb:10:5: C: [Correctable] Style/WordArray: Use ['Salt Minion'] for an array of words. (https://rubystyle.guide#percent-w) %w[Salt\ Minion] ^^^^^^^^^^^^^^^^ test/integration/v3001-py3/controls/pkgs_spec.rb:10:5: C: [Correctable] Style/WordArray: Use ['Salt Minion'] for an array of words. (https://rubystyle.guide#percent-w) %w[Salt\ Minion] ^^^^^^^^^^^^^^^^ test/integration/v3002-py3/controls/pkgs_spec.rb:10:5: C: [Correctable] Style/WordArray: Use ['Salt Minion'] for an array of words. (https://rubystyle.guide#percent-w) %w[Salt\ Minion] ^^^^^^^^^^^^^^^^ test/integration/v3003-py3/controls/pkgs_spec.rb:10:5: C: [Correctable] Style/WordArray: Use ['Salt Minion'] for an array of words. (https://rubystyle.guide#percent-w) %w[Salt\ Minion] ^^^^^^^^^^^^^^^^ 19 files inspected, 5 offenses detected, 5 offenses auto-correctable ```
27 lines
438 B
Ruby
27 lines
438 B
Ruby
# frozen_string_literal: true
|
|
|
|
pkgs =
|
|
case system.platform[:name]
|
|
when 'arch'
|
|
%w[salt]
|
|
when /bsd$/
|
|
%w[py38-salt]
|
|
when 'windows'
|
|
['Salt Minion']
|
|
else
|
|
%w[salt-master salt-minion]
|
|
end
|
|
|
|
control 'salt packages' do
|
|
title 'should be installed'
|
|
|
|
version = '3002'
|
|
|
|
pkgs.each do |p|
|
|
describe package(p) do
|
|
it { should be_installed }
|
|
its('version') { should match(/^#{version}/) }
|
|
end
|
|
end
|
|
end
|