Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / num2bool_spec.rb
1 require 'spec_helper'
2
3 describe 'num2bool' do
4   it { is_expected.not_to eq(nil) }
5   it { is_expected.to run.with_params.and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) }
6   it { is_expected.to run.with_params(1, 2).and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) }
7   it { is_expected.to run.with_params('abc').and_raise_error(Puppet::ParseError, %r{does not look like a number}) }
8   it { is_expected.to run.with_params(1).and_return(true) }
9   it { is_expected.to run.with_params('1').and_return(true) }
10   it { is_expected.to run.with_params(1.5).and_return(true) }
11   it { is_expected.to run.with_params('1.5').and_return(true) }
12   it { is_expected.to run.with_params(-1).and_return(false) }
13   it { is_expected.to run.with_params('-1').and_return(false) }
14   it { is_expected.to run.with_params(-1.5).and_return(false) }
15   it { is_expected.to run.with_params('-1.5').and_return(false) }
16   it { is_expected.to run.with_params(0).and_return(false) }
17   it { is_expected.to run.with_params('0').and_return(false) }
18   it { is_expected.to run.with_params([]).and_return(false) }
19   it { is_expected.to run.with_params('[]').and_raise_error(Puppet::ParseError, %r{does not look like a number}) }
20   it { is_expected.to run.with_params({}).and_return(false) }
21   it { is_expected.to run.with_params('{}').and_raise_error(Puppet::ParseError, %r{does not look like a number}) }
22   it { is_expected.to run.with_params(['-50', '1']).and_return(false) }
23 end