2
0
salt-formula/test/integration/v3001-py3/controls/pkgs_spec.rb
2020-06-23 09:55:44 +01:00

18 lines
294 B
Ruby

# frozen_string_literal: true
control 'salt packages' do
title 'should be installed'
version = '3001'
%w[
salt-master
salt-minion
].each do |p|
describe package(p) do
it { should be_installed }
its('version') { should match(/^#{version}/) }
end
end
end