1
0
mirror of https://github.com/krislamo/puppet-fluentd synced 2024-11-09 20:50:34 +00:00

added fluentd_repo_spec.rb

This commit is contained in:
Max Wilhelm 2015-12-03 19:28:31 +01:00
parent 6fb278603b
commit b21e606acb

View File

@ -0,0 +1,18 @@
require 'spec_helper'
describe 'fluentd::repo', :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('fluentd::repo::apt')
}
end
end