mirror of
https://github.com/inspec/inspec
synced 2024-11-24 05:33:17 +00:00
16 lines
563 B
Ruby
16 lines
563 B
Ruby
|
# encoding: utf-8
|
||
|
# author: Aaron Lippold
|
||
|
|
||
|
require 'helper'
|
||
|
|
||
|
describe 'Inspec::Resources::Postgres' do
|
||
|
it 'verify postgresql.conf config parsing of a simple key value' do
|
||
|
resource = load_resource('postgres_conf', '/etc/postgresql/9.4/main/postgresql.conf')
|
||
|
_(resource.params('log_connections')).must_equal 'on'
|
||
|
end
|
||
|
it 'verify postgresql.conf config parsing of a complex key value' do
|
||
|
resource = load_resource('postgres_conf', '/etc/postgresql/9.4/main/postgresql.conf')
|
||
|
_(resource.value(['pgaudit.log_parameter'])).must_equal 'on'
|
||
|
end
|
||
|
end
|