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