X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fstdlib%2Fspec%2Facceptance%2Fsuffix_spec.rb;h=6b0409543a506103dd1584e3a308197956e78301;hb=6f656bd4265e3dab13b9af2bf96e9044322e9d8f;hp=60a62649fc236fe60f7330c793cd0f59a68bf4e9;hpb=6963202b4b62c2816655ac9532521b018fdf83bd;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/stdlib/spec/acceptance/suffix_spec.rb b/3rdparty/modules/stdlib/spec/acceptance/suffix_spec.rb old mode 100755 new mode 100644 index 60a62649f..6b0409543 --- a/3rdparty/modules/stdlib/spec/acceptance/suffix_spec.rb +++ b/3rdparty/modules/stdlib/spec/acceptance/suffix_spec.rb @@ -1,36 +1,34 @@ -#! /usr/bin/env ruby -S rspec require 'spec_helper_acceptance' describe 'suffix function' do describe 'success' do - it 'suffixes array of values' do - pp = <<-EOS + pp1 = <<-DOC $o = suffix(['a','b','c'],'p') notice(inline_template('suffix is <%= @o.inspect %>')) - EOS - - apply_manifest(pp, :catch_failures => true) do |r| - expect(r.stdout).to match(/suffix is \["ap", "bp", "cp"\]/) + DOC + it 'suffixes array of values' do + apply_manifest(pp1, :catch_failures => true) do |r| + expect(r.stdout).to match(%r{suffix is \["ap", "bp", "cp"\]}) end end - it 'suffixs with empty array' do - pp = <<-EOS + + pp2 = <<-DOC $o = suffix([],'p') notice(inline_template('suffix is <%= @o.inspect %>')) - EOS - - apply_manifest(pp, :catch_failures => true) do |r| - expect(r.stdout).to match(/suffix is \[\]/) + DOC + it 'suffixs with empty array' do + apply_manifest(pp2, :catch_failures => true) do |r| + expect(r.stdout).to match(%r{suffix is \[\]}) end end - it 'suffixs array of values with undef' do - pp = <<-EOS + + pp3 = <<-DOC $o = suffix(['a','b','c'], undef) notice(inline_template('suffix is <%= @o.inspect %>')) - EOS - - apply_manifest(pp, :catch_failures => true) do |r| - expect(r.stdout).to match(/suffix is \["a", "b", "c"\]/) + DOC + it 'suffixs array of values with undef' do + apply_manifest(pp3, :catch_failures => true) do |r| + expect(r.stdout).to match(%r{suffix is \["a", "b", "c"\]}) end end end