summaryrefslogtreecommitdiff
path: root/spec/functions/validate_numeric_spec.rb
diff options
context:
space:
mode:
authorDavid Schmitt <david.schmitt@puppetlabs.com>2015-05-27 20:05:01 +0100
committerDavid Schmitt <david.schmitt@puppetlabs.com>2015-05-27 20:05:05 +0100
commitcf9f7a6b7e4ede7edd612fde33f7149f9c7f3385 (patch)
tree45e3ea607843a0ec02670cb5172d2951ac46dc50 /spec/functions/validate_numeric_spec.rb
parentb4090184c76666e58694aa4f09a39be009a42f5f (diff)
validate_integer, validate_numeric: explicitely reject hashes in arrays
Without this patch, Ruby 1.8's Hash#to_s behaviour causes [{1=>2}] to be treated as "12" when validating values.
Diffstat (limited to 'spec/functions/validate_numeric_spec.rb')
-rwxr-xr-xspec/functions/validate_numeric_spec.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/functions/validate_numeric_spec.rb b/spec/functions/validate_numeric_spec.rb
index 1623a3d..c99d879 100755
--- a/spec/functions/validate_numeric_spec.rb
+++ b/spec/functions/validate_numeric_spec.rb
@@ -62,6 +62,11 @@ describe Puppet::Parser::Functions.function(:validate_numeric) do
expect { scope.compiler.compile }.to raise_error(Puppet::ParseError, /to be a Numeric or Array/)
end
+ it "should not compile when a Hash is passed in an Array" do
+ Puppet[:code] = "validate_numeric([{ 1 => 2 }])"
+ expect { scope.compiler.compile }.to raise_error(Puppet::ParseError, /to be a Numeric/)
+ end
+
it "should not compile when an explicitly undef variable is passed" do
Puppet[:code] = <<-'ENDofPUPPETcode'
$foo = undef