1
0
mirror of https://github.com/krislamo/puppet-rsnapshot synced 2024-09-20 01:10:35 +00:00
puppet-rsnapshot/spec/classes/init_spec.rb
Joshua Hoblitt decccb771f fix rspec tests
Missing ::osfamily fact.
2016-12-21 10:34:57 -07:00

8 lines
189 B
Ruby

require 'spec_helper'
describe 'rsnapshot' do
let(:facts) {{ :osfamily => 'RedHat' }}
it { should contain_class('rsnapshot::params') }
it { is_expected.to compile }
end