keepalived-formula/test/integration/default/controls/service_spec.rb
Imran Iqbal 8ab91fd450
test(inspec): add service verification control [skip ci]
Provide this after noticing this was missing when reviewing #45.
2021-06-05 14:47:09 +01:00

12 lines
229 B
Ruby

# frozen_string_literal: true
control 'Keepalived service' do
title 'should be installed'
describe service('keepalived') do
it { should be_installed }
it { should be_enabled }
it { should be_running }
end
end