mysql::perl tests

This commit is contained in:
Chris Weyl 2013-05-03 09:09:59 -07:00
parent fac48b8584
commit 0dec443517
2 changed files with 63 additions and 0 deletions

View file

@ -0,0 +1,62 @@
require 'spec_helper'
describe 'mysql::perl' do
describe 'on a debian based os' do
let :facts do
{ :osfamily => 'Debian'}
end
it { should contain_package('perl_mysql').with(
:name => 'libdbd-mysql-perl',
:ensure => 'present',
# TODO is this what we want? does this actually work
# if the provider is blank
:provider => ''
)}
end
describe 'on a freebsd based os' do
let :facts do
{ :osfamily => 'FreeBSD'}
end
it { should contain_package('perl_mysql').with(
:name => 'p5-DBD-mysql',
:ensure => 'present',
:provider => ''
)}
end
describe 'on a redhat based os' do
let :facts do
{:osfamily => 'Redhat'}
end
it { should contain_package('perl_mysql').with(
:name => 'perl-DBD-MySQL',
:ensure => 'present',
:provider => ''
)}
describe 'when parameters are supplied' do
let :params do
{:package_ensure => 'latest',
:package_provider => 'zypper',
:package_name => 'mysql_perl'}
end
it { should contain_package('perl_mysql').with(
:name => 'mysql_perl',
:ensure => 'latest',
:provider => 'zypper'
)}
end
end
describe 'on any other os' do
let :facts do
{:osfamily => 'foo'}
end
it 'should fail' do
expect { subject }.to raise_error(/Unsupported osfamily: foo/)
end
end
end

1
tests/perl.pp Normal file
View file

@ -0,0 +1 @@
include mysql::perl