summaryrefslogtreecommitdiff
path: root/spec/classes/daemon_spec.rb
blob: db5291dc201da50eb29e235e99c24d132106463d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
require File.expand_path(File.join(File.dirname(__FILE__),'../spec_helper'))

describe 'tor::daemon', :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') }
    it { is_expected.to contain_class('tor::daemon::base') }
    it { is_expected.to_not contain_class('tor::munin') }
    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') }
      it { is_expected.to contain_class('tor::daemon::base') }
      it { is_expected.to_not contain_class('tor::munin') }
    end
  end
end