keepalived-formula/test/integration/default/controls/service_spec.rb

12 lines
229 B
Ruby
Raw Normal View History

# 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