X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fstdlib%2Fspec%2Ffunctions%2Fround_spec.rb;h=fa8ebd5fae3683f862174f2f1e1ba736806c5420;hb=131e09855e065be940e104d9ab0f18940cc76257;hp=8b13478f2525a843a8ecc4ce028ea8433a0abc9b;hpb=407d322498f4fde815abf381007fbecfe5c10b2b;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/stdlib/spec/functions/round_spec.rb b/3rdparty/modules/stdlib/spec/functions/round_spec.rb old mode 100755 new mode 100644 index 8b13478f2..fa8ebd5fa --- a/3rdparty/modules/stdlib/spec/functions/round_spec.rb +++ b/3rdparty/modules/stdlib/spec/functions/round_spec.rb @@ -1,6 +1,6 @@ require 'spec_helper' -describe 'round' do +describe 'round', :if => Puppet::Util::Package.versioncmp(Puppet.version, '6.0.0') < 0 do it { is_expected.not_to eq(nil) } it { is_expected.to run.with_params(34.3).and_return(34) } it { is_expected.to run.with_params(-34.3).and_return(-34) } @@ -8,7 +8,7 @@ describe 'round' do it { is_expected.to run.with_params(-34.5).and_return(-35) } it { is_expected.to run.with_params(34.7).and_return(35) } it { is_expected.to run.with_params(-34.7).and_return(-35) } - it { is_expected.to run.with_params("test").and_raise_error Puppet::ParseError } - it { is_expected.to run.with_params("test", "best").and_raise_error Puppet::ParseError } + it { is_expected.to run.with_params('test').and_raise_error Puppet::ParseError } + it { is_expected.to run.with_params('test', 'best').and_raise_error Puppet::ParseError } it { is_expected.to run.with_params(3, 4).and_raise_error Puppet::ParseError } end