X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fstdlib%2Fspec%2Facceptance%2Fabs_spec.rb;h=e3d904a0792403955a80e62216bcaf0a7495bb48;hb=6f656bd4265e3dab13b9af2bf96e9044322e9d8f;hp=6e41e2fde191cebe8ca7b1b5a3b1f01aace297d9;hpb=ad88f67c13ae0f1a08936dad643f1e3509ab5f40;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/stdlib/spec/acceptance/abs_spec.rb b/3rdparty/modules/stdlib/spec/acceptance/abs_spec.rb old mode 100755 new mode 100644 index 6e41e2fde..e3d904a07 --- a/3rdparty/modules/stdlib/spec/acceptance/abs_spec.rb +++ b/3rdparty/modules/stdlib/spec/acceptance/abs_spec.rb @@ -1,29 +1,26 @@ -#! /usr/bin/env ruby -S rspec require 'spec_helper_acceptance' -describe 'abs function', :unless => UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) do +describe 'abs function', :if => Puppet::Util::Package.versioncmp(return_puppet_version, '6.0.0') < 0 do describe 'success' do - it 'should accept a string' do - pp = <<-EOS + pp1 = <<-DOC $input = '-34.56' $output = abs($input) notify { "$output": } - EOS - - apply_manifest(pp, :catch_failures => true) do |r| - expect(r.stdout).to match(/Notice: 34.56/) + DOC + it 'accepts a string' do + apply_manifest(pp1, :catch_failures => true) do |r| + expect(r.stdout).to match(%r{Notice: 34.56}) end end - it 'should accept a float' do - pp = <<-EOS - $input = -34.56 + pp2 = <<-DOC + $input = -35.46 $output = abs($input) notify { "$output": } - EOS - - apply_manifest(pp, :catch_failures => true) do |r| - expect(r.stdout).to match(/Notice: 34.56/) + DOC + it 'accepts a float' do + apply_manifest(pp2, :catch_failures => true) do |r| + expect(r.stdout).to match(%r{Notice: 35.46}) end end end