module-puppetlabs-mysql/spec/classes/mysql_bindings_ruby_spec.rb

61 lines
1.4 KiB
Ruby
Raw Normal View History

require 'spec_helper'
describe 'mysql::bindings::ruby' do
describe 'on a debian based os' do
let :facts do
2013-07-08 11:49:30 +02:00
{ :osfamily => 'Debian', :root_home => '/root'}
end
it { should contain_package('ruby_mysql').with(
:name => 'libmysql-ruby',
:ensure => 'present',
:provider => ''
)}
end
2012-05-10 06:55:16 +02:00
describe 'on a freebsd based os' do
let :facts do
2013-07-08 11:49:30 +02:00
{ :osfamily => 'FreeBSD', :root_home => '/root'}
2012-05-10 06:55:16 +02:00
end
it { should contain_package('ruby_mysql').with(
:name => 'ruby-mysql',
:ensure => 'present',
:provider => 'gem'
)}
end
describe 'on a redhat based os' do
let :facts do
2013-07-08 11:49:30 +02:00
{:osfamily => 'RedHat', :root_home => '/root'}
end
it { should contain_package('ruby_mysql').with(
:name => 'ruby-mysql',
:ensure => 'present',
:provider => 'gem'
)}
describe 'when parameters are supplied' do
let :params do
{:package_ensure => 'latest',
:package_provider => 'zypper',
:package_name => 'mysql_ruby'}
end
it { should contain_package('ruby_mysql').with(
:name => 'mysql_ruby',
:ensure => 'latest',
:provider => 'zypper'
)}
end
end
describe 'on any other os' do
let :facts do
2013-07-08 11:49:30 +02:00
{:osfamily => 'foo', :root_home => '/root'}
end
it 'should fail' do
2012-07-24 01:39:37 +02:00
expect { subject }.to raise_error(/Unsupported osfamily: foo/)
end
end
end