0
0
mirror of https://github.com/saltstack-formulas/salt-formula.git synced 2024-11-28 15:57:25 +01:00
salt-formula/test/integration/2017-7/service_spec.rb

15 lines
264 B
Ruby
Raw Normal View History

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