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>
17 lines
387 B
Ruby
17 lines
387 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'postgresql::repo', :type => :class do
|
|
let :facts do
|
|
{
|
|
:osfamily => 'Debian',
|
|
:operatingsystem => 'Debian',
|
|
:operatingsystemrelease => '6.0',
|
|
}
|
|
end
|
|
|
|
describe 'with no parameters' do
|
|
it 'should instantiate apt_postgresql_org class' do
|
|
should include_class('postgresql::repo::apt_postgresql_org')
|
|
end
|
|
end
|
|
end
|