59c1cbfbf8
This is a very very large change to the module. It started out as a fix to add postgresl::server::config_entry, and quickly became a rewrite to fix a lot of ordering issues inherent in the API. Since this changes the Public API it is considered a backwards compatible change. See the upgrading guide in README.md for more details as to what has been modified in this patch. Signed-off-by: Ken Barber <ken@bob.sh>
40 lines
991 B
Ruby
40 lines
991 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'postgresql::lib::java', :type => :class do
|
|
|
|
describe 'on a debian based os' do
|
|
let :facts do {
|
|
:osfamily => 'Debian',
|
|
:operatingsystem => 'Debian',
|
|
:operatingsystemrelease => '6.0',
|
|
}
|
|
end
|
|
it { should contain_package('postgresql-jdbc').with(
|
|
:name => 'libpostgresql-jdbc-java',
|
|
:ensure => 'present'
|
|
)}
|
|
end
|
|
|
|
describe 'on a redhat based os' do
|
|
let :facts do {
|
|
:osfamily => 'RedHat',
|
|
:operatingsystem => 'RedHat',
|
|
:operatingsystemrelease => '6.4',
|
|
}
|
|
end
|
|
it { should contain_package('postgresql-jdbc').with(
|
|
:name => 'postgresql-jdbc',
|
|
:ensure => 'present'
|
|
)}
|
|
describe 'when parameters are supplied' do
|
|
let :params do
|
|
{:package_ensure => 'latest', :package_name => 'somepackage'}
|
|
end
|
|
it { should contain_package('postgresql-jdbc').with(
|
|
:name => 'somepackage',
|
|
:ensure => 'latest'
|
|
)}
|
|
end
|
|
end
|
|
|
|
end
|