X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fstdlib%2Fspec%2Facceptance%2Fparsejson_spec.rb;fp=3rdparty%2Fmodules%2Fstdlib%2Fspec%2Facceptance%2Fparsejson_spec.rb;h=0000000000000000000000000000000000000000;hb=30caaa85aed7015ca0d77216bff175eebd917eb7;hp=8a19907dcd74755cb3bd5c51e60f5563936ae702;hpb=6f656bd4265e3dab13b9af2bf96e9044322e9d8f;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/stdlib/spec/acceptance/parsejson_spec.rb b/3rdparty/modules/stdlib/spec/acceptance/parsejson_spec.rb deleted file mode 100644 index 8a19907dc..000000000 --- a/3rdparty/modules/stdlib/spec/acceptance/parsejson_spec.rb +++ /dev/null @@ -1,50 +0,0 @@ -require 'spec_helper_acceptance' - -describe 'parsejson function' do - describe 'success' do - pp1 = <<-DOC - $a = '{"hunter": "washere", "tests": "passing"}' - $ao = parsejson($a) - $tests = $ao['tests'] - notice(inline_template('tests are <%= @tests.inspect %>')) - DOC - it 'parses valid json' do - apply_manifest(pp1, :catch_failures => true) do |r| - expect(r.stdout).to match(%r{tests are "passing"}) - end - end - end - - describe 'failure' do - pp2 = <<-DOC - $a = '{"hunter": "washere", "tests": "passing",}' - $ao = parsejson($a, 'tests are using the default value') - notice(inline_template('a is <%= @ao.inspect %>')) - DOC - it 'raises error on incorrect json - default value is used' do - apply_manifest(pp2, :catch_failures => true) do |r| - expect(r.stdout).to match(%r{tests are using the default value}) - end - end - - pp3 = <<-DOC - $a = '{"hunter": "washere", "tests": "passing",}' - $ao = parsejson($a) - notice(inline_template('a is <%= @ao.inspect %>')) - DOC - it 'raises error on incorrect json' do - apply_manifest(pp3, :expect_failures => true) do |r| - expect(r.stderr).to match(%r{expected next name}) - end - end - - pp4 = <<-DOC - $o = parsejson() - DOC - it 'raises error on incorrect number of arguments' do - apply_manifest(pp4, :expect_failures => true) do |r| - expect(r.stderr).to match(%r{wrong number of arguments}i) - end - end - end -end