Sha256: 78bfdbb91c8f9ddb6c9e92fdfb287a2661cc67c8f06e50196592b108754db431
Contents?: true
Size: 494 Bytes
Versions: 7
Compression:
Stored size: 494 Bytes
Contents
require 'spec_helper_system' describe 'postgresql::client:' do after :all do # Cleanup after tests have ran puppet_apply("class { 'postgresql::client': package_ensure => purged }") do |r| r.exit_code.should_not == 1 end end it 'test loading class with no parameters' do pp = <<-EOS.unindent 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
Version data entries
7 entries across 7 versions & 1 rubygems