2
0
salt-formula/test/integration/v3000-py2/controls/service_spec.rb

17 lines
281 B
Ruby
Raw Normal View History

2020-05-01 09:32:39 +02:00
# frozen_string_literal: true
control 'salt services' do
title 'should be running'
%w[
salt-master
salt-minion
].each do |p|
describe service(p) do
it { should be_installed }
it { should be_enabled }
it { should be_running }
end
end
end