salt-formula/test/integration/2019-2/service_spec.rb

15 lines
264 B
Ruby

control 'salt services' do
title 'should be running'
describe service('salt-master') do
it { should be_enabled }
it { should be_running }
end
describe service('salt-minion') do
it { should be_enabled }
it { should be_running }
end
end