0
0
mirror of https://github.com/saltstack-formulas/cron-formula.git synced 2024-12-03 01:46:41 +01:00
cron-formula/test/integration/default/controls/service_spec.rb
2019-08-27 23:52:09 +02:00

18 lines
281 B
Ruby

control 'Cron service' do
title 'should be running and enabled'
service_name =
case os[:family]
when 'debian', 'suse'
'cron'
else
'crond'
end
describe service(service_name) do
it { should be_enabled }
it { should be_running }
end
end