
It has been automatically generated using cookiecutter[1] and msync[2]. [1] https://github.com/openstack/puppet-openstack-cookiecutter [2] https://github.com/openstack/puppet-modulesync-configs Change-Id: I43e8be43f6c77d55ff0c5879344020942eb9cf43
38 lines
849 B
Ruby
38 lines
849 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'cloudkitty::db::postgresql' do
|
|
|
|
let :pre_condition do
|
|
'include postgresql::server'
|
|
end
|
|
|
|
let :required_params do
|
|
{ :password => 'pw' }
|
|
end
|
|
|
|
shared_examples_for 'cloudkitty-db-postgresql' do
|
|
context 'with only required parameters' do
|
|
let :params do
|
|
required_params
|
|
end
|
|
|
|
it { is_expected.to contain_postgresql__server__db('cloudkitty').with(
|
|
:user => 'cloudkitty',
|
|
:password => 'md53482d86a9afd805efeb0f628944a7ecc'
|
|
)}
|
|
end
|
|
end
|
|
|
|
on_supported_os({
|
|
:supported_os => OSDefaults.get_supported_os
|
|
}).each do |os,facts|
|
|
context "on #{os}" do
|
|
let (:facts) do
|
|
facts.merge!(OSDefaults.get_facts({ :concat_basedir => '/var/lib/puppet/concat' }))
|
|
end
|
|
|
|
it_behaves_like 'cloudkitty-db-postgresql'
|
|
end
|
|
end
|
|
end
|