2013-08-27 22:43:47 +02:00
|
|
|
require 'spec_helper_system'
|
|
|
|
|
|
|
|
describe 'postgresql::lib::java:' do
|
|
|
|
after :all do
|
|
|
|
# Cleanup after tests have ran
|
2013-09-14 07:33:46 +02:00
|
|
|
puppet_apply("class { 'postgresql::lib::java': package_ensure => purged }") do |r|
|
2013-08-27 22:43:47 +02:00
|
|
|
r.exit_code.should_not == 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'test loading class with no parameters' do
|
2013-09-14 07:33:46 +02:00
|
|
|
pending('libpostgresql-java-jdbc not available natively for Ubuntu 10.04 and Debian 6',
|
|
|
|
:if => (node.facts['osfamily'] == 'Debian' and ['6', '10'].include?(node.facts['lsbmajdistrelease'])))
|
|
|
|
|
2013-09-18 23:25:51 +02:00
|
|
|
pp = <<-EOS.unindent
|
2013-08-27 22:43:47 +02:00
|
|
|
class { 'postgresql::lib::java': }
|
|
|
|
EOS
|
|
|
|
|
|
|
|
puppet_apply(pp) do |r|
|
|
|
|
r.exit_code.should_not == 1
|
|
|
|
r.refresh
|
|
|
|
r.exit_code.should == 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|