module-postgresql/spec/unit/defines/role_spec.pp

15 lines
266 B
ObjectPascal
Raw Normal View History

require 'spec_helper'
describe 'postgresql::role', :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