Sha256: 1af80605de0f081c9e66089236a963c5b9fed6240bb4863c322794ca6e59889f

Contents?: true

Size: 658 Bytes

Versions: 7

Compression:

Stored size: 658 Bytes

Contents

require 'spec_helper_system'

describe 'postgresql::lib::python:' do
  after :all do
    # Cleanup after tests have ran
    puppet_apply("class { 'postgresql::lib::python': package_ensure => purged }") do |r|
      r.exit_code.should_not == 1
    end
  end

  it 'test loading class with no parameters' do
    pending('psycopg2 not available natively for centos 5', :if => (node.facts['osfamily'] == 'RedHat' and node.facts['lsbmajdistrelease'] == '5'))

    pp = <<-EOS.unindent
      class { 'postgresql::lib::python': }
    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

Version Path
freighthop-0.3.3 modules/postgresql/spec/system/lib/python_spec.rb
freighthop-0.3.2 modules/postgresql/spec/system/lib/python_spec.rb
freighthop-0.3.1 modules/postgresql/spec/system/lib/python_spec.rb
freighthop-0.3.0 modules/postgresql/spec/system/lib/python_spec.rb
freighthop-0.2.1 modules/postgresql/spec/system/lib/python_spec.rb
freighthop-0.2.0 modules/postgresql/spec/system/lib/python_spec.rb
freighthop-0.1.0 modules/postgresql/spec/system/lib/python_spec.rb