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>
23 lines
479 B
Ruby
23 lines
479 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'postgresql::server::config_entry', :type => :define do
|
|
let :facts do
|
|
{
|
|
:osfamily => 'RedHat',
|
|
:operatingsystem => 'RedHat',
|
|
:operatingsystemrelease => '6.4',
|
|
}
|
|
end
|
|
|
|
let(:title) { 'config_entry'}
|
|
|
|
let :target do
|
|
tmpfilename('postgresql_conf')
|
|
end
|
|
|
|
context "syntax check" do
|
|
let(:params) { { :ensure => 'present'} }
|
|
it { should contain_postgresql__server__config_entry('config_entry') }
|
|
end
|
|
end
|
|
|