module-postgresql/spec/unit/defines/server/tablespace_spec.rb

32 lines
652 B
Ruby
Raw Normal View History

require 'spec_helper'
describe 'postgresql::server::tablespace', :type => :define do
let :facts do
{
:osfamily => 'Debian',
:operatingsystem => 'Debian',
:operatingsystemrelease => '6.0',
2014-04-08 16:40:49 +02:00
:kernel => 'Linux',
:concat_basedir => tmpfilename('tablespace'),
:id => 'root',
:path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
}
end
let :title do
'test'
end
let :params do
{
:location => '/srv/data/foo',
}
end
2014-04-08 16:40:49 +02:00
let :pre_condition do
"class {'postgresql::server':}"
end
it { is_expected.to contain_postgresql__server__tablespace('test') }
end