mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-10 04:50:34 +00:00
added fluentd_service_spec.rb
This commit is contained in:
parent
b12b650357
commit
240c4b37b8
24
spec/classes/fluentd_service_spec.rb
Normal file
24
spec/classes/fluentd_service_spec.rb
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
require 'spec_helper'
|
||||||
|
|
||||||
|
describe 'fluentd::config', :type => :class do
|
||||||
|
let(:facts) {
|
||||||
|
{
|
||||||
|
:osfamily => 'Debian',
|
||||||
|
:lsbdistid => 'Ubuntu',
|
||||||
|
:operatingsystem => 'Ubuntu',
|
||||||
|
:lsbdistcodename => 'precise',
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
describe 'when called with no parameters on Ubuntu' do
|
||||||
|
it {
|
||||||
|
should contain_service('fluentd').with({
|
||||||
|
'name' => 'td-agent',
|
||||||
|
'ensure' => 'running',
|
||||||
|
'enable' => 'true',
|
||||||
|
'hasstatus' => 'true',
|
||||||
|
'hasrestart' => 'true'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue
Block a user