2013-08-27 22:43:47 +02:00
|
|
|
require 'spec_helper_system'
|
|
|
|
|
|
|
|
describe 'postgresql::client:' do
|
|
|
|
after :all do
|
|
|
|
# Cleanup after tests have ran
|
2013-09-14 07:33:46 +02:00
|
|
|
puppet_apply("class { 'postgresql::client': 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
|
|
|
|
pp = <<-EOS
|
|
|
|
class { 'postgresql::client': }
|
|
|
|
EOS
|
|
|
|
|
|
|
|
puppet_apply(pp) do |r|
|
|
|
|
r.exit_code.should_not == 1
|
|
|
|
r.refresh
|
|
|
|
r.exit_code.should == 0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|