module-postgresql/spec/system/server/plperl_spec.rb
Ken Barber 59c1cbfbf8 Major rewrite to solve order dependencies and unclear public API
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>
2013-09-14 06:39:15 +01:00

29 lines
784 B
Ruby

require 'spec_helper_system'
describe 'server plperl:' do
after :all do
# Cleanup after tests have ran
pp = <<-EOS
class { 'postgresql::server': ensure => absent }
class { 'postgresql::server::plperl': package_ensure => absent }
EOS
puppet_apply(pp) do |r|
r.exit_code.should_not == 1
end
end
it 'test loading class with no parameters' do
pending('no support for plperl with default version on centos 5',
:if => (node.facts['osfamily'] == 'RedHat' and node.facts['lsbmajdistrelease'] == '5'))
pp = <<-EOS
class { 'postgresql::server': }
class { 'postgresql::server::plperl': }
EOS
puppet_apply(pp) do |r|
r.exit_code.should_not == 1
r.refresh
r.exit_code.should == 0
end
end
end