diff options
author | David Schmitt <david.schmitt@puppet.com> | 2016-08-08 16:15:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-08 16:15:21 +0100 |
commit | e39fe01ea01719b97110341cacc4b4e2784a7d1a (patch) | |
tree | 620b3c0889386c88d0731f0b958f622d0b4d1bac /spec/aliases/integer_spec.rb | |
parent | 2bf9187cf8971fad35b0ffebf7c49963ba35c850 (diff) | |
parent | 6e7e69fe203e042b28aacb01301c338d55448c5f (diff) |
Merge pull request #629 from tphoney/MODULES-3533
(modules-3533) deprecation for 3.x number function
Diffstat (limited to 'spec/aliases/integer_spec.rb')
-rw-r--r-- | spec/aliases/integer_spec.rb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/spec/aliases/integer_spec.rb b/spec/aliases/integer_spec.rb new file mode 100644 index 0000000..fbc8c19 --- /dev/null +++ b/spec/aliases/integer_spec.rb @@ -0,0 +1,28 @@ +require 'spec_helper' + +if Puppet.version.to_f >= 4.0 + describe 'test::integer', type: :class do + describe 'accepts integers' do + [ + 3, + '3', + -3, + '-3', + ].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.7, '3.7',-3.7, '-342.2315e-12' ].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 Integer, Pattern(\[.*\]+)?, or Array/) } + end + end + end + end +end |