48 lines
1.2 KiB
Ruby
48 lines
1.2 KiB
Ruby
|
require 'spec_helper'
|
||
|
|
||
|
describe 'postgresql::server::plpython', :type => :class do
|
||
|
let :facts do
|
||
|
{
|
||
|
:osfamily => 'RedHat',
|
||
|
:operatingsystem => 'CentOS',
|
||
|
:operatingsystemrelease => '6.0',
|
||
|
:concat_basedir => tmpfilename('plpython'),
|
||
|
:kernel => 'Linux',
|
||
|
:id => 'root',
|
||
|
:path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
|
||
|
}
|
||
|
end
|
||
|
|
||
|
let :pre_condition do
|
||
|
"class { 'postgresql::server': }"
|
||
|
end
|
||
|
|
||
|
describe 'on RedHat with no parameters' do
|
||
|
it { is_expected.to contain_class("postgresql::server::plpython") }
|
||
|
it 'should create package' do
|
||
|
is_expected.to contain_package('postgresql-plpython').with({
|
||
|
:ensure => 'present',
|
||
|
:tag => 'postgresql',
|
||
|
})
|
||
|
end
|
||
|
end
|
||
|
|
||
|
describe 'with parameters' do
|
||
|
let :params do
|
||
|
{
|
||
|
:package_ensure => 'absent',
|
||
|
:package_name => 'mypackage',
|
||
|
}
|
||
|
end
|
||
|
|
||
|
it { is_expected.to contain_class("postgresql::server::plpython") }
|
||
|
it 'should create package with correct params' do
|
||
|
is_expected.to contain_package('postgresql-plpython').with({
|
||
|
:ensure => 'absent',
|
||
|
:name => 'mypackage',
|
||
|
:tag => 'postgresql',
|
||
|
})
|
||
|
end
|
||
|
end
|
||
|
end
|