summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorAdrien Thebo <git@somethingsinistral.net>2013-03-18 15:37:56 -0700
committerAdrien Thebo <git@somethingsinistral.net>2013-03-18 15:37:56 -0700
commitc0a0682706ccc1ed8c927c5529c08ffe2a7a4a5e (patch)
tree82b093297dfec93464ee11ccebc16a4d7cf17216 /spec
parentc12d3d7d51da4107f5e0b63aacc4fcb2c5923a0b (diff)
parent4c695ede384501b9c516cc53bdfc6b547a6e5ea2 (diff)
Merge branch '2.x' into 3.x
Diffstat (limited to 'spec')
-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