Sha256: eea0e008d3e4856085f9ed961571d6b9f9f14ca2eea3c236ae720716de44acde

Contents?: true

Size: 699 Bytes

Versions: 14

Compression:

Stored size: 699 Bytes

Contents

require 'spec_helper'

describe 'postgresql::lib::python', :type => :class do

  describe 'on a redhat based os' do
    let :facts do {
      :osfamily => 'RedHat',
      :operatingsystem => 'RedHat',
      :operatingsystemrelease => '6.4',
    }
    end
    it { should contain_package('python-psycopg2').with(
      :name => 'python-psycopg2',
      :ensure => 'present'
    )}
  end

  describe 'on a debian based os' do
    let :facts do {
      :osfamily => 'Debian',
      :operatingsystem => 'Debian',
      :operatingsystemrelease => '6.0',
    }
    end
    it { should contain_package('python-psycopg2').with(
      :name => 'python-psycopg2',
      :ensure => 'present'
    )}
  end

end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
freighthop-0.6.1 modules/postgresql/spec/unit/classes/lib/python_spec.rb
freighthop-0.6.0 modules/postgresql/spec/unit/classes/lib/python_spec.rb
freighthop-0.5.2 modules/postgresql/spec/unit/classes/lib/python_spec.rb
freighthop-0.5.1 modules/postgresql/spec/unit/classes/lib/python_spec.rb
freighthop-0.5.0 modules/postgresql/spec/unit/classes/lib/python_spec.rb
freighthop-0.4.1 modules/postgresql/spec/unit/classes/lib/python_spec.rb
freighthop-0.4.0 modules/postgresql/spec/unit/classes/lib/python_spec.rb
freighthop-0.3.3 modules/postgresql/spec/unit/classes/lib/python_spec.rb
freighthop-0.3.2 modules/postgresql/spec/unit/classes/lib/python_spec.rb
freighthop-0.3.1 modules/postgresql/spec/unit/classes/lib/python_spec.rb
freighthop-0.3.0 modules/postgresql/spec/unit/classes/lib/python_spec.rb
freighthop-0.2.1 modules/postgresql/spec/unit/classes/lib/python_spec.rb
freighthop-0.2.0 modules/postgresql/spec/unit/classes/lib/python_spec.rb
freighthop-0.1.0 modules/postgresql/spec/unit/classes/lib/python_spec.rb