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

22 lines
473 B
Ruby
Raw Normal View History

2015-12-03 18:28:53 +00:00
require 'spec_helper'
describe 'fluentd::install', :type => :class do
on_supported_os.each do |os, facts|
context "on #{os}" do
let :facts do
facts
end
2015-12-03 18:28:53 +00:00
describe 'when called with no parameters' do
it {
should contain_package('fluentd').with({
'ensure' => 'installed',
'name' => 'td-agent',
'install_options' => []
})
}
end
end
2015-12-03 18:28:53 +00:00
end
end