0
0
mirror of https://github.com/saltstack-formulas/cron-formula.git synced 2024-11-29 11:53:59 +01:00
cron-formula/test/integration/default/controls/package_spec.rb

16 lines
236 B
Ruby
Raw Normal View History

2019-08-27 23:35:25 +02:00
control 'Cron package' do
title 'should be installed'
package_name =
case os[:family]
when 'debian'
'cron'
else
'cronie'
end
describe package(package_name) do
it { should be_installed }
end
end