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

added fluentd_repo_apt_spec

This commit is contained in:
Max Wilhelm 2015-12-04 12:29:06 +01:00
parent ef70744f8c
commit ea344aa9ad

View File

@ -0,0 +1,28 @@
require 'spec_helper'
describe 'fluentd::repo::apt', :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_class('apt')
should contain_apt__source('treasure-data').with({
'ensure' => 'present',
'location' => 'http://packages.treasuredata.com/2/ubuntu/precise',
'release' => 'precise',
'repos' => 'contrib',
'key' => {
'id' => '1093DB45A12E206F',
'source' => 'https://packages.treasuredata.com/GPG-KEY-td-agent'
}
})
}
end
end