mirror of
https://github.com/saltstack-formulas/packages-formula.git
synced 2025-04-16 09:40:23 +00:00
27 lines
428 B
Ruby
27 lines
428 B
Ruby
### WANTED/REQUIRED
|
|
control 'Wanted/Required gems' do
|
|
title 'should be installed'
|
|
|
|
%w{
|
|
progressbar
|
|
minitest
|
|
}.each do |p|
|
|
describe gem(p) do
|
|
it { should be_installed }
|
|
end
|
|
end
|
|
end
|
|
|
|
### UNWANTED
|
|
control 'Unwanted gems' do
|
|
title 'should be uninstalled'
|
|
%w{
|
|
diff-lcs
|
|
kwalify
|
|
kitchen-vagrant
|
|
}.each do |p|
|
|
describe gem(p) do
|
|
it { should_not be_installed }
|
|
end
|
|
end
|
|
end
|