mirror of
https://github.com/saltstack-formulas/salt-formula.git
synced 2024-12-03 20:58:40 +01:00
45394feb99
add travis button to README
15 lines
264 B
Ruby
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
|