mirror of
https://github.com/kemko/liquid.git
synced 2026-01-04 01:05:40 +03:00
handle join on fixnum
This commit is contained in:
@@ -384,7 +384,7 @@ module Liquid
|
||||
end
|
||||
|
||||
def join(glue)
|
||||
to_a.join(glue)
|
||||
to_a.join(glue.to_s)
|
||||
end
|
||||
|
||||
def concat(args)
|
||||
|
||||
@@ -170,6 +170,7 @@ class StandardFiltersTest < Minitest::Test
|
||||
def test_join
|
||||
assert_equal '1 2 3 4', @filters.join([1, 2, 3, 4])
|
||||
assert_equal '1 - 2 - 3 - 4', @filters.join([1, 2, 3, 4], ' - ')
|
||||
assert_equal '1121314', @filters.join([1, 2, 3, 4], 1)
|
||||
end
|
||||
|
||||
def test_sort
|
||||
|
||||
Reference in New Issue
Block a user