65 lines
1.4 KiB
Ruby
65 lines
1.4 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe 'mysql::ruby' do
|
|
|
|
describe 'on a debian based os' do
|
|
let :facts do
|
|
{ :osfamily => 'Debian'}
|
|
end
|
|
it { should contain_package('ruby_mysql').with(
|
|
:name => 'libmysql-ruby',
|
|
: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('ruby_mysql').with(
|
|
:name => 'ruby-mysql',
|
|
:ensure => 'present',
|
|
:provider => 'gem'
|
|
)}
|
|
end
|
|
|
|
describe 'on a redhat based os' do
|
|
let :facts do
|
|
{:osfamily => 'Redhat'}
|
|
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
|
|
{:osfamily => 'foo'}
|
|
end
|
|
|
|
it 'should fail' do
|
|
expect do
|
|
subject
|
|
end.should raise_error(/Unsupported osfamily: foo/)
|
|
end
|
|
end
|
|
|
|
end
|