diff --git a/test/integration/default/controls/service_spec.rb b/test/integration/default/controls/service_spec.rb new file mode 100644 index 0000000..2e1e82c --- /dev/null +++ b/test/integration/default/controls/service_spec.rb @@ -0,0 +1,11 @@ +# 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