module-postgresql/spec/system/lib/devel_spec.rb

23 lines
497 B
Ruby
Raw Normal View History

require 'spec_helper_system'
describe 'postgresql::lib::devel:' do
after :all do
# Cleanup after tests have ran
puppet_apply("class { 'postgresql::lib::devel': package_ensure => absent }") do |r|
r.exit_code.should_not == 1
end
end
it 'test loading class with no parameters' do
pp = <<-EOS
class { 'postgresql::lib::devel': }
EOS
puppet_apply(pp) do |r|
r.exit_code.should_not == 1
r.refresh
r.exit_code.should == 0
end
end
end