summaryrefslogtreecommitdiff
path: root/puppet/modules/stdlib/spec/acceptance/getparam_spec.rb
diff options
context:
space:
mode:
authorMicah <micah@leap.se>2016-05-24 10:19:33 -0400
committerMicah <micah@leap.se>2016-05-24 10:19:33 -0400
commit0e9121a885d545e14488f9aec1a861ba90b7dbb2 (patch)
treee54275620f2ac3222d3c141ae97f73b423f91681 /puppet/modules/stdlib/spec/acceptance/getparam_spec.rb
parent40cfe3ca5f29428b237627d167f2405ea9193dbb (diff)
parent1da5dc55ee48fcd437f5b5df00a5b2f3991ec9f1 (diff)
Merge commit '1da5dc55ee48fcd437f5b5df00a5b2f3991ec9f1' as 'puppet/modules/stdlib'
Diffstat (limited to 'puppet/modules/stdlib/spec/acceptance/getparam_spec.rb')
-rwxr-xr-xpuppet/modules/stdlib/spec/acceptance/getparam_spec.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/puppet/modules/stdlib/spec/acceptance/getparam_spec.rb b/puppet/modules/stdlib/spec/acceptance/getparam_spec.rb
new file mode 100755
index 00000000..b1a677ec
--- /dev/null
+++ b/puppet/modules/stdlib/spec/acceptance/getparam_spec.rb
@@ -0,0 +1,24 @@
+#! /usr/bin/env ruby -S rspec
+require 'spec_helper_acceptance'
+
+describe 'getparam function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
+ describe 'success' do
+ it 'getparam a notify' do
+ pp = <<-EOS
+ notify { 'rspec':
+ message => 'custom rspec message',
+ }
+ $o = getparam(Notify['rspec'], 'message')
+ notice(inline_template('getparam is <%= @o.inspect %>'))
+ EOS
+
+ apply_manifest(pp, :catch_failures => true) do |r|
+ expect(r.stdout).to match(/getparam is "custom rspec message"/)
+ end
+ end
+ end
+ describe 'failure' do
+ it 'handles no arguments'
+ it 'handles non strings'
+ end
+end