mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-09 20:50:34 +00:00
21 lines
473 B
Ruby
21 lines
473 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'fluentd', :type => :class do
|
|
on_supported_os.each do |os, facts|
|
|
context "on #{os}" do
|
|
let :facts do
|
|
facts
|
|
end
|
|
|
|
describe 'when called with no parameters' do
|
|
it {
|
|
should contain_class('fluentd::repo')
|
|
should contain_class('fluentd::install')
|
|
should contain_class('fluentd::config')
|
|
should contain_class('fluentd::service')
|
|
}
|
|
end
|
|
end
|
|
end
|
|
end
|