1
0
mirror of https://github.com/krislamo/puppet-fluentd synced 2024-09-20 04:30:36 +00:00
puppet-fluentd/spec/classes/fluentd_spec.rb

21 lines
473 B
Ruby
Raw Normal View History

2015-11-30 11:23:28 +00:00
require 'spec_helper'
2015-12-03 16:53:01 +00:00
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
2015-11-30 11:23:28 +00:00
end