mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-10 04:50:34 +00:00
38 lines
795 B
Ruby
38 lines
795 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'fluentd::user', :type => :class do
|
|
shared_examples 'when called with no parameters' do
|
|
it {
|
|
should contain_user('fluentd').with({
|
|
'name' => 'td-agent',
|
|
'gid' => 'td-agent',
|
|
'groups' => ['adm']
|
|
})
|
|
}
|
|
end
|
|
|
|
context 'when osfamily is Debian' do
|
|
let(:facts) {
|
|
{
|
|
:osfamily => 'Debian',
|
|
:lsbdistid => 'Ubuntu',
|
|
:operatingsystem => 'Ubuntu',
|
|
:lsbdistcodename => 'precise',
|
|
:architecture => 'amd64',
|
|
}
|
|
}
|
|
|
|
include_examples 'when called with no parameters'
|
|
end
|
|
|
|
context 'when osfamily is RedHat' do
|
|
let(:facts) {
|
|
{
|
|
:osfamily => 'RedHat',
|
|
}
|
|
}
|
|
|
|
include_examples 'when called with no parameters'
|
|
end
|
|
end
|