Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / round_spec.rb
1 require 'spec_helper'
2
3 describe 'round', :if => Puppet::Util::Package.versioncmp(Puppet.version, '6.0.0') < 0 do
4   it { is_expected.not_to eq(nil) }
5   it { is_expected.to run.with_params(34.3).and_return(34) }
6   it { is_expected.to run.with_params(-34.3).and_return(-34) }
7   it { is_expected.to run.with_params(34.5).and_return(35) }
8   it { is_expected.to run.with_params(-34.5).and_return(-35) }
9   it { is_expected.to run.with_params(34.7).and_return(35) }
10   it { is_expected.to run.with_params(-34.7).and_return(-35) }
11   it { is_expected.to run.with_params('test').and_raise_error Puppet::ParseError }
12   it { is_expected.to run.with_params('test', 'best').and_raise_error Puppet::ParseError }
13   it { is_expected.to run.with_params(3, 4).and_raise_error Puppet::ParseError }
14 end