summaryrefslogtreecommitdiff
path: root/spec/unit/puppet/parser
diff options
context:
space:
mode:
authorJustin Lambert <jlambert@eml.cc>2012-12-17 06:22:36 -0700
committerAdrien Thebo <git@somethingsinistral.net>2013-03-18 15:37:36 -0700
commit5d5a4d466ed6530fa8b68162e96bdaaaf35066e1 (patch)
tree4011d4942030d73e063a4d632b90392c54c6120c /spec/unit/puppet/parser
parent967f9916d16ea4f5a8557c9c66ddb878872337ca (diff)
str2bool should return a boolean if called with a boolean
Diffstat (limited to 'spec/unit/puppet/parser')
-rw-r--r--spec/unit/puppet/parser/functions/str2bool_spec.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/unit/puppet/parser/functions/str2bool_spec.rb b/spec/unit/puppet/parser/functions/str2bool_spec.rb
index 2782bbe..ef6350f 100644
--- a/spec/unit/puppet/parser/functions/str2bool_spec.rb
+++ b/spec/unit/puppet/parser/functions/str2bool_spec.rb
@@ -21,4 +21,11 @@ describe "the str2bool function" do
result = scope.function_str2bool(["undef"])
result.should(eq(false))
end
+
+ it "should return the boolean it was called with" do
+ result = scope.function_str2bool([true])
+ result.should(eq(true))
+ result = scope.function_str2bool([false])
+ result.should(eq(false))
+ end
end