summaryrefslogtreecommitdiff
path: root/spec/acceptance/getparam_spec.rb
diff options
context:
space:
mode:
authorHunter Haugen <hunter@puppetlabs.com>2014-06-23 13:45:06 -0700
committerHunter Haugen <hunter@puppetlabs.com>2014-06-23 13:45:06 -0700
commit4b7162896a0a4ec5dc5166c8846eb5968a3c5329 (patch)
treee03ff73a2c213ffdab472b1964d5513753866ca6 /spec/acceptance/getparam_spec.rb
parent3ec3a4b0facc22b323d0fc6f16d6c6a5a1323ded (diff)
OS X also has lo0 and can't manage user homedirs
Diffstat (limited to 'spec/acceptance/getparam_spec.rb')
-rwxr-xr-xspec/acceptance/getparam_spec.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/acceptance/getparam_spec.rb b/spec/acceptance/getparam_spec.rb
index 91fc9a0..e3e442f 100755
--- a/spec/acceptance/getparam_spec.rb
+++ b/spec/acceptance/getparam_spec.rb
@@ -3,18 +3,18 @@ require 'spec_helper_acceptance'
describe 'getparam function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
describe 'success' do
- it 'getparam a package' do
+ it 'getparam a notify' do
pp = <<-EOS
- user { "rspec":
- ensure => present,
- managehome => true,
+ notify { 'rspec':
+ ensure => present,
+ message => 'custom rspec message',
}
- $o = getparam(User['rspec'], 'managehome')
+ $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 true/)
+ expect(r.stdout).to match(/getparam is "custom rspec message"/)
end
end
end