Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / num2bool_spec.rb
index 60533e3..786fd97 100644 (file)
@@ -19,4 +19,5 @@ describe 'num2bool' do
   it { is_expected.to run.with_params('[]').and_raise_error(Puppet::ParseError, %r{does not look like a number}) }
   it { is_expected.to run.with_params({}).and_return(false) }
   it { is_expected.to run.with_params('{}').and_raise_error(Puppet::ParseError, %r{does not look like a number}) }
+  it { is_expected.to run.with_params(['-50', '1']).and_return(false) }
 end