summaryrefslogtreecommitdiff
path: root/spec/aliases/float_spec.rb
blob: cc2075831837a82743ad31a62a84bb19629b5ec4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
require 'spec_helper'

if Puppet.version.to_f >= 4.5
  describe 'test::float', type: :class do
    describe 'accepts floats' do
      [
        3.7,
        '3.7',
        -3.7,
        '-342.2315e-12',
      ].each do |value|
        describe value.inspect do
          let(:params) {{ value: value }}
          it { is_expected.to compile }
        end
      end
    end

    describe 'rejects other values' do
      [ true, 'true', false, 'false', 'iAmAString', '1test', '1 test', 'test 1', 'test 1 test', {}, { 'key' => 'value' }, { 1=> 2 }, '', :undef , 'x', 3, '3', -3, '-3'].each do |value|
        describe value.inspect do
          let(:params) {{ value: value }}
          it { is_expected.to compile.and_raise_error(/parameter 'value' expects a value of type Float or Pattern(\[.*\]+)?/) }
        end
      end
    end
  end
end