mirror of
https://github.com/saltstack-formulas/packages-formula.git
synced 2025-04-16 09:40:23 +00:00
12 lines
200 B
Ruby
12 lines
200 B
Ruby
### REMOTE PKGS
|
|
control 'Remote packages' do
|
|
title 'should be downloaded and installed'
|
|
|
|
%w{
|
|
zoom
|
|
}.each do |p|
|
|
describe package(p) do
|
|
it { should be_installed }
|
|
end
|
|
end
|
|
end
|