0
0
mirror of https://github.com/saltstack-formulas/salt-formula.git synced 2024-12-12 18:31:34 +01:00
salt-formula/test/integration/v201902-py3/controls/service_spec.rb

14 lines
217 B
Ruby
Raw Normal View History

control 'salt services' do
title 'should be running'
%w(
salt-master
salt-minion
).each do |p|
describe service(p) do
it { should be_enabled }
it { should be_running }
end
end
end