1
0
mirror of https://github.com/krislamo/puppet-fluentd synced 2024-09-20 12:40:34 +00:00
puppet-fluentd/spec/classes/fluentd_repo_spec.rb

31 lines
645 B
Ruby
Raw Normal View History

2015-12-03 18:28:31 +00:00
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',
2016-05-12 20:31:52 +00:00
:architecture => 'amd64',
}
}
2015-12-03 18:28:31 +00:00
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
2015-12-03 18:28:31 +00:00
end