summaryrefslogtreecommitdiff
path: root/spec/defines/munin_plugin_spec.rb
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2014-06-13 12:25:48 +0200
committermh <mh@immerda.ch>2014-06-13 12:25:48 +0200
commit88d197da8cedd5d711db043995f725ebe66b6ed6 (patch)
treec16dd06790a667ed1152fe7ff184379e7a1976df /spec/defines/munin_plugin_spec.rb
parentea1cf47e6a86d5641fc6655bff553c4dbe55b897 (diff)
implement #38 - allow config to be an array
Diffstat (limited to 'spec/defines/munin_plugin_spec.rb')
-rw-r--r--spec/defines/munin_plugin_spec.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/spec/defines/munin_plugin_spec.rb b/spec/defines/munin_plugin_spec.rb
index 3d7e9e3..0e7306a 100644
--- a/spec/defines/munin_plugin_spec.rb
+++ b/spec/defines/munin_plugin_spec.rb
@@ -30,6 +30,23 @@ describe 'munin::plugin' do
) }
end
+ context 'present and config as an array' do
+ let(:params) do
+ { :config => [ 'env.user root', 'env.group root' ] }
+ end
+ it { should contain_file('/etc/munin/plugins/users').with(
+ :ensure => 'link',
+ :target => '/usr/share/munin/plugins/users',
+ :notify => 'Service[munin-node]'
+ ) }
+ it { should contain_file('/etc/munin/plugin-conf.d/users.conf').with(
+ :content => "[users]\nenv.user root\nenv.group root\n",
+ :owner => 'root',
+ :group => 0,
+ :mode => '0640'
+ ) }
+ end
+
context 'absent' do
let(:params) do
{ :ensure => 'absent' }