59c1cbfbf8
This is a very very large change to the module. It started out as a fix to add postgresl::server::config_entry, and quickly became a rewrite to fix a lot of ordering issues inherent in the API. Since this changes the Public API it is considered a backwards compatible change. See the upgrading guide in README.md for more details as to what has been modified in this patch. Signed-off-by: Ken Barber <ken@bob.sh>
28 lines
610 B
Ruby
28 lines
610 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'postgresql::validate_db_connection', :type => :define do
|
|
let :facts do
|
|
{
|
|
:osfamily => 'Debian',
|
|
:operatingsystem => 'Debian',
|
|
:operatingsystemrelease => '6.0',
|
|
}
|
|
end
|
|
|
|
let :title do
|
|
'test'
|
|
end
|
|
|
|
describe 'should work with all parameters' do
|
|
let :params do
|
|
{
|
|
:database_host => 'test',
|
|
:database_name => 'test',
|
|
:database_password => 'test',
|
|
:database_username => 'test',
|
|
:database_port => 5432,
|
|
}
|
|
end
|
|
it { should contain_postgresql__validate_db_connection('test') }
|
|
end
|
|
end
|