summaryrefslogtreecommitdiff
path: root/spec/unit/puppet/parser/functions/is_numeric_spec.rb
diff options
context:
space:
mode:
authorJeff McCune <jeff@puppetlabs.com>2013-01-03 13:38:36 -0800
committerJeff McCune <jeff@puppetlabs.com>2013-01-03 13:38:36 -0800
commitd7aea0f0be659223452ba2d65e799d2b7dbfd823 (patch)
tree12d5f80efdcf54f1d3e1731b20777d3b1097c43c /spec/unit/puppet/parser/functions/is_numeric_spec.rb
parente1f2a932883c71038d78938efd46cdb30c01da6d (diff)
parentbc4abce86b07a97ec9d17ee105266c1260a9a1c8 (diff)
downloadpuppet-stdlib-d7aea0f0be659223452ba2d65e799d2b7dbfd823.tar.gz
puppet-stdlib-d7aea0f0be659223452ba2d65e799d2b7dbfd823.tar.bz2
Merge branch '3.2.x' into 3.x
* 3.2.x: Add test/validation for is_float if created from an arithmetical operation Add test/validation for is_integer if created from an arithmetical operation Add test/validation for is_numeric if created from an arithmetical operation
Diffstat (limited to 'spec/unit/puppet/parser/functions/is_numeric_spec.rb')
-rw-r--r--spec/unit/puppet/parser/functions/is_numeric_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/unit/puppet/parser/functions/is_numeric_spec.rb b/spec/unit/puppet/parser/functions/is_numeric_spec.rb
index 4078b37..d7440fb 100644
--- a/spec/unit/puppet/parser/functions/is_numeric_spec.rb
+++ b/spec/unit/puppet/parser/functions/is_numeric_spec.rb
@@ -22,6 +22,16 @@ describe "the is_numeric function" do
result.should(eq(true))
end
+ it "should return true if an integer is created from an arithmetical operation" do
+ result = scope.function_is_numeric([3*2])
+ result.should(eq(true))
+ end
+
+ it "should return true if a float is created from an arithmetical operation" do
+ result = scope.function_is_numeric([3.2*2])
+ result.should(eq(true))
+ end
+
it "should return false if a string" do
result = scope.function_is_numeric(["asdf"])
result.should(eq(false))