postgres-formula/test/integration/default/controls/services_spec.rb

14 lines
251 B
Ruby
Raw Normal View History

control 'Postgres service' do
impact 0.5
title 'should be running and enabled'
describe service('postgresql') do
it { should be_enabled }
it { should be_running }
end
describe port(5432) do
it { should be_listening }
end
end