mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-12 21:50:34 +00:00
30 lines
608 B
Ruby
30 lines
608 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'fluentd::repo', :type => :class do
|
|
|
|
context 'when called with no parameters on osfamily Debian' do
|
|
let(:facts) {
|
|
{
|
|
:osfamily => 'Debian',
|
|
:lsbdistid => 'Ubuntu',
|
|
:operatingsystem => 'Ubuntu',
|
|
:lsbdistcodename => 'precise',
|
|
}
|
|
}
|
|
it {
|
|
should contain_class('fluentd::repo::apt')
|
|
}
|
|
end
|
|
|
|
context 'when called with no parameters on osfamily RedHat' do
|
|
let(:facts) {
|
|
{
|
|
:osfamily => 'RedHat',
|
|
}
|
|
}
|
|
it {
|
|
should contain_class('fluentd::repo::yum')
|
|
}
|
|
end
|
|
end
|