mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-10 04:50:34 +00:00
use rspec-puppet-facts for fluentd_repo_spec
This commit is contained in:
parent
41a617c156
commit
754cd4a696
@ -1,30 +1,21 @@
|
|||||||
require 'spec_helper'
|
require 'spec_helper'
|
||||||
|
|
||||||
describe 'fluentd::repo', :type => :class do
|
describe 'fluentd::repo', :type => :class do
|
||||||
|
on_supported_os.each do |os, facts|
|
||||||
context 'when called with no parameters on osfamily Debian' do
|
context "on #{os}" do
|
||||||
let(:facts) {
|
let :facts do
|
||||||
{
|
facts
|
||||||
:osfamily => 'Debian',
|
|
||||||
:lsbdistid => 'Ubuntu',
|
|
||||||
:operatingsystem => 'Ubuntu',
|
|
||||||
:lsbdistcodename => 'precise',
|
|
||||||
:architecture => 'amd64',
|
|
||||||
}
|
|
||||||
}
|
|
||||||
it {
|
|
||||||
should contain_class('fluentd::repo::apt')
|
|
||||||
}
|
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when called with no parameters on osfamily RedHat' do
|
describe 'when called with no parameters' do
|
||||||
let(:facts) {
|
case facts[:osfamily]
|
||||||
{
|
when 'Debian'
|
||||||
:osfamily => 'RedHat',
|
it { is_expected.to contain_class('fluentd::repo::apt') }
|
||||||
}
|
when 'RedHat'
|
||||||
}
|
it { is_expected.to contain_class('fluentd::repo::yum') }
|
||||||
it {
|
|
||||||
should contain_class('fluentd::repo::yum')
|
|
||||||
}
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user