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