891b1d71a2
Signed-off-by: Ken Barber <ken@bob.sh>
33 lines
766 B
Ruby
33 lines
766 B
Ruby
require 'spec_helper_system'
|
|
|
|
describe 'postgresql::server::contrib:' do
|
|
after :all do
|
|
# Cleanup after tests have ran, remove both contrib and server as contrib
|
|
# pulls in the server based packages.
|
|
pp = <<-EOS.unindent
|
|
class { 'postgresql::server':
|
|
ensure => absent,
|
|
}
|
|
class { 'postgresql::server::contrib':
|
|
package_ensure => purged,
|
|
}
|
|
EOS
|
|
|
|
puppet_apply(pp) do |r|
|
|
r.exit_code.should_not == 1
|
|
end
|
|
end
|
|
|
|
it 'test loading class with no parameters' do
|
|
pp = <<-EOS.unindent
|
|
class { 'postgresql::server': }
|
|
class { 'postgresql::server::contrib': }
|
|
EOS
|
|
|
|
puppet_apply(pp) do |r|
|
|
r.exit_code.should == 2
|
|
r.refresh
|
|
r.exit_code.should == 0
|
|
end
|
|
end
|
|
end
|