mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-10 04:50:34 +00:00
23 lines
473 B
Ruby
23 lines
473 B
Ruby
|
require 'spec_helper'
|
||
|
|
||
|
describe 'fluentd::user', :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_user('fluentd').with({
|
||
|
'name' => 'td-agent',
|
||
|
'gid' => 'td-agent',
|
||
|
'groups' => ['adm']
|
||
|
})
|
||
|
}
|
||
|
end
|
||
|
end
|