inspec/test/integration/default/postgres_session_spec.rb
2016-03-18 11:30:54 +01:00

9 lines
256 B
Ruby

# encoding: utf-8
# postgres-server is installed on these platforms
if ['ubuntu', 'centos'].include? os['family']
postgres = postgres_session('postgres', 'inspec')
describe postgres.query('show ssl;') do
its('output') { should eq 'on' }
end
end