remove unnecessary flatten filter

This commit is contained in:
Florian Weingarten
2014-07-24 02:56:57 +00:00
parent 0b45ffeada
commit eae24373e6
2 changed files with 0 additions and 15 deletions

View File

@@ -127,11 +127,6 @@ module Liquid
end
end
# flatten the given input
def flatten(input)
Array(input).flatten
end
# Replace occurrences of a string with another
def replace(input, string, replacement = ''.freeze)
input.to_s.gsub(string, replacement.to_s)

View File

@@ -163,16 +163,6 @@ class StandardFiltersTest < Test::Unit::TestCase
assert_template_result "42", template, "thing" => hash
end
def test_flatten
assert_equal [1,2,3,4], @filters.flatten([1,2,3,4])
assert_equal [1,2,3,4], @filters.flatten([[1,2,3,4]])
assert_equal [1,2,3,4], @filters.flatten([[1],[2],[3],[4]])
assert_equal [1], @filters.flatten(1)
assert_template_result '1234', "{{ ary | flatten | flatten }}",
'ary' => [[1],2,[3],4]
end
def test_sort_calls_to_liquid
t = TestThing.new
Liquid::Template.parse('{{ foo | sort: "whatever" }}').render("foo" => [t])