diff options
author | Bryan Jen <bryan.jen@gmail.com> | 2015-09-14 10:40:35 -0700 |
---|---|---|
committer | Bryan Jen <bryan.jen@gmail.com> | 2015-09-14 10:40:35 -0700 |
commit | c0df8192ee5c2f606ae99c2a3115002962901dea (patch) | |
tree | e3f076d9e4174c5ef08cb22fbd8c57a26a8c23fe /spec/acceptance/parseyaml_spec.rb | |
parent | 2a7a93ffb49b2ae63d4fd09982fd8c382c1f4b5a (diff) | |
parent | eb948c4a0dc36790c5444fc236b0154c3d716c58 (diff) |
Merge pull request #511 from dmitryilyin/parseyaml_default
[MODULES-2462] Improve parseyaml function
Diffstat (limited to 'spec/acceptance/parseyaml_spec.rb')
-rwxr-xr-x | spec/acceptance/parseyaml_spec.rb | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/spec/acceptance/parseyaml_spec.rb b/spec/acceptance/parseyaml_spec.rb index 5819837..7946de0 100755 --- a/spec/acceptance/parseyaml_spec.rb +++ b/spec/acceptance/parseyaml_spec.rb @@ -16,20 +16,29 @@ describe 'parseyaml function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('o end end end + describe 'failure' do - it 'raises error on incorrect yaml' do + it 'returns the default value on incorrect yaml' do pp = <<-EOS $a = "---\nhunter: washere\ntests: passing\n:" - $o = parseyaml($a) + $o = parseyaml($a, {'tests' => 'using the default value'}) $tests = $o['tests'] notice(inline_template('tests are <%= @tests.inspect %>')) EOS - apply_manifest(pp, :expect_failures => true) do |r| - expect(r.stderr).to match(/(syntax error|did not find expected key)/) + apply_manifest(pp, :catch_failures => true) do |r| + expect(r.stdout).to match(/tests are "using the default value"/) end end - it 'raises error on incorrect number of arguments' + it 'raises error on incorrect number of arguments' do + pp = <<-EOS + $o = parseyaml() + EOS + + apply_manifest(pp, :expect_failures => true) do |r| + expect(r.stderr).to match(/wrong number of arguments/i) + end + end end end |