effb1da2eeb3e27643d4f38f9f1e6cff02efa040
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / is_float_spec.rb
1 require 'spec_helper'
2
3 describe 'is_float' do
4   it { is_expected.not_to eq(nil) }
5
6   it { is_expected.to run.with_params.and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) }
7   it { is_expected.to run.with_params(0.1, 0.2).and_raise_error(Puppet::ParseError, %r{wrong number of arguments}i) }
8
9   describe 'passing a string' do
10     it { is_expected.to run.with_params('0.1').and_return(true) }
11     it { is_expected.to run.with_params('1.0').and_return(true) }
12     it { is_expected.to run.with_params('1').and_return(false) }
13     it { is_expected.to run.with_params('one').and_return(false) }
14     it { is_expected.to run.with_params('one 1.0').and_return(false) }
15     it { is_expected.to run.with_params('1.0 one').and_return(false) }
16   end
17
18   describe 'passing numbers' do
19     it { is_expected.to run.with_params(0.1).and_return(true) }
20     it { is_expected.to run.with_params(1.0).and_return(true) }
21     it { is_expected.to run.with_params(1).and_return(false) }
22   end
23
24   context 'with deprecation warning' do
25     after(:each) do
26       ENV.delete('STDLIB_LOG_DEPRECATIONS')
27     end
28     # Checking for deprecation warning, which should only be provoked when the env variable for it is set.
29     it 'displays a single deprecation' do
30       ENV['STDLIB_LOG_DEPRECATIONS'] = 'true'
31       expect(scope).to receive(:warning).with(include('This method is deprecated'))
32       is_expected.to run.with_params(2.2).and_return(true)
33     end
34     it 'displays no warning for deprecation' do
35       ENV['STDLIB_LOG_DEPRECATIONS'] = 'false'
36       expect(scope).to receive(:warning).with(include('This method is deprecated')).never
37       is_expected.to run.with_params(1.0).and_return(true)
38     end
39   end
40 end