Add facts to updater spec to make it green

This commit is contained in:
Cedric DEFORTIS 2017-04-27 15:30:59 +02:00 committed by Cédric Defortis
parent 189fc932e7
commit ee0e095ea2

View File

@ -1,6 +1,16 @@
require 'spec_helper'
describe 'bind::updater' do
let :facts do
{
:concat_basedir => '/wtf',
:osfamily => 'Debian',
:os => {
:family => 'Debian',
},
:operatingsystem => 'Debian'
}
end
it { should compile }
it { should compile.with_all_deps }
end