summaryrefslogtreecommitdiff
path: root/spec/classes/munin_host_spec.rb
blob: 2216cc56c39f89c4eafad963c339aa9bf166ebee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'spec_helper'

describe 'munin::host' do
  let :facts do
    {
      :operatingsystem => 'CentOS',
      :interfaces      => 'lo,eth0',
    }
  end

  it 'should compile' do
    should include_class('munin::host')
  end
end