require File.expand_path(File.join(File.dirname(__FILE__),'../spec_helper')) describe 'tor', :type => 'class' do let(:default_facts) { { :osfamily => 'RedHat', :operatingsystem => 'CentOS', } } let(:facts){ default_facts } let(:pre_condition){'Exec{path => "/bin"}' } describe 'with standard' do it { is_expected.to compile.with_all_deps } it { is_expected.to contain_class('tor::base') } context 'on Debian' do let(:facts) { { :osfamily => 'Debian', :operatingsystem => 'Debian', } } it { is_expected.to compile.with_all_deps } it { is_expected.to contain_class('tor::base') } end end end