14 lines
272 B
Ruby
14 lines
272 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'postgresql::tablespace', :type => :define do
|
|
let :facts do
|
|
{
|
|
:postgres_default_version => '8.4',
|
|
:osfamily => 'Debian',
|
|
}
|
|
end
|
|
let :title do
|
|
'test'
|
|
end
|
|
it { should include_class("postgresql::params") }
|
|
end
|