summaryrefslogtreecommitdiff
path: root/spec/classes/munin_host_spec.rb
blob: ccfcee6f02185d5fdfd0651dbf9c548a8d2d8b72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'spec_helper'

describe 'munin::host' do
  shared_examples 'debian-host' do |os, codename|
    let(:facts) {{
      :operatingsystem => os,
      :osfamily => 'Debian',
      :lsbdistcodename => codename,
      :concat_basedir => '/var/lib/puppet/concat',
    }}
    it { should contain_package('munin') }
    it { should contain_file('/etc/munin/munin.conf') }
  end

#  context 'on debian-like system' do
#    it_behaves_like 'debian-host', 'Debian', 'squeeze'
#    it_behaves_like 'debian', 'Debian', 'wheezy'
#    it_behaves_like 'debian', 'Ubuntu', 'precise'
#  end

end