if value.is_a?(Array) then
value.sort
elsif value.is_a?(String) then
- value.split("").sort.to_s
+ value.split("").sort.join("")
end
end
raise(Puppet::ParseError, 'values_at(): Requires array to work with')
end
- indices = *arguments # Get them all ... Pokemon ...
+ indices = [arguments.shift].flatten() # Get them all ... Pokemon ...
if not indices or indices.empty?
raise(Puppet::ParseError, 'values_at(): You must provide ' +
it "should shuffle a string but the sorted contents should still be the same" do
result = @scope.function_shuffle(["adfs"])
- result.split("").sort.to_s.should(eq("adfs"))
+ result.split("").sort.join("").should(eq("adfs"))
end
end