summaryrefslogtreecommitdiff
path: root/spec/classes/munin_client_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/classes/munin_client_spec.rb')
-rw-r--r--spec/classes/munin_client_spec.rb14
1 files changed, 8 insertions, 6 deletions
diff --git a/spec/classes/munin_client_spec.rb b/spec/classes/munin_client_spec.rb
index a5539b3..ebf8d73 100644
--- a/spec/classes/munin_client_spec.rb
+++ b/spec/classes/munin_client_spec.rb
@@ -1,7 +1,7 @@
require 'spec_helper'
describe 'munin::client' do
- shared_examples 'debian' do |os, codename|
+ shared_examples 'debian-client' do |os, codename|
let(:facts) {{
:operatingsystem => os,
:osfamily => 'Debian',
@@ -10,9 +10,10 @@ describe 'munin::client' do
it { should contain_package('munin-node') }
it { should contain_package('iproute') }
it { should contain_file('/etc/munin/munin-node.conf') }
+ it { should include_class('munin::client::debian') }
end
- shared_examples 'redhat' do |os, codename|
+ shared_examples 'redhat-client' do |os, codename|
let(:facts) {{
:operatingsystem => os,
:osfamily => 'RedHat',
@@ -24,13 +25,13 @@ describe 'munin::client' do
end
context 'on debian-like system' do
- it_behaves_like 'debian', 'Debian', 'squeeze'
- it_behaves_like 'debian', 'Debian', 'wheezy'
- it_behaves_like 'debian', 'Ubuntu', 'precise'
+ it_behaves_like 'debian-client', 'Debian', 'squeeze'
+ it_behaves_like 'debian-client', 'Debian', 'wheezy'
+ it_behaves_like 'debian-client', 'Ubuntu', 'precise'
end
context 'on redhat-like system' do
- it_behaves_like 'redhat', 'CentOS', '6'
+ it_behaves_like 'redhat-client', 'CentOS', '6'
# not supported yet
# it_behaves_like 'redhat', 'RedHat', '6'
end
@@ -44,6 +45,7 @@ describe 'munin::client' do
}}
it { should contain_package('munin-node') }
it { should contain_file('/etc/munin/munin-node.conf') }
+ it { should include_class('munin::client::gentoo') }
end
end