Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9344173
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
View Options
diff --git a/spec/acceptance/try_get_value_spec.rb b/spec/acceptance/try_get_value_spec.rb
index 46b1c4d..c0bf38a 100755
--- a/spec/acceptance/try_get_value_spec.rb
+++ b/spec/acceptance/try_get_value_spec.rb
@@ -1,47 +1,47 @@
#! /usr/bin/env ruby -S rspec
require 'spec_helper_acceptance'
describe 'try_get_value function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do
describe 'success' do
- it 'try_get_valuees a value' do
+ it 'gets a value' do
pp = <<-EOS
$data = {
'a' => { 'b' => 'passing'}
}
- $tests = try_get_value($a, 'a/b')
+ $tests = try_get_value($data, 'a/b')
notice(inline_template('tests are <%= @tests.inspect %>'))
EOS
apply_manifest(pp, :catch_failures => true) do |r|
expect(r.stdout).to match(/tests are "passing"/)
end
end
end
describe 'failure' do
it 'uses a default value' do
pp = <<-EOS
$data = {
'a' => { 'b' => 'passing'}
}
- $tests = try_get_value($a, 'c/d', 'using the default value')
+ $tests = try_get_value($data, 'c/d', 'using the default value')
notice(inline_template('tests are <%= @tests.inspect %>'))
EOS
- apply_manifest(pp, :expect_failures => true) do |r|
+ apply_manifest(pp, :catch_failures => true) do |r|
expect(r.stdout).to match(/using the default value/)
end
end
it 'raises error on incorrect number of arguments' do
pp = <<-EOS
$o = try_get_value()
EOS
apply_manifest(pp, :expect_failures => true) do |r|
expect(r.stderr).to match(/wrong number of arguments/i)
end
end
end
end
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Fri, Jul 4, 2:10 PM (16 h, 52 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3358900
Attached To
rSPSTD puppet-puppetlabs-stdlib
Event Timeline
Log In to Comment