puppet-bind/spec/classes/updater_spec.rb
2017-05-02 12:33:33 +02:00

17 lines
309 B
Ruby

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