Skip to content

Commit

Permalink
fix tablerow drop's last attribute with missing cols param
Browse files Browse the repository at this point in the history
  • Loading branch information
ggmichaelgo committed Oct 3, 2022
1 parent c8f3cfa commit 6f8c53e
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/liquid/tags/table_row.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def render_to_output_buffer(context, output)
collection = Utils.slice_collection(collection, from, to)
length = collection.length

cols = context.evaluate(@attributes['cols']).to_i
cols = @attributes['cols'].nil? ? length : context.evaluate(@attributes['cols']).to_i

output << "<tr class=\"row1\">\n"
context.stack do
Expand Down
52 changes: 52 additions & 0 deletions test/integration/tags/table_row_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,56 @@ def test_blank_string_not_iterable
"{% tablerow char in characters cols:3 %}I WILL NOT BE OUTPUT{% endtablerow %}",
{ 'characters' => '' })
end

def test_tablerow_loop_drop
template = <<~LIQUID.chomp("\n")
{% tablerow i in (1...2) %}
col: {{ tablerowloop.col }}
col0: {{ tablerowloop.col0 }}
col_first: {{ tablerowloop.col_first }}
col_last: {{ tablerowloop.col_last }}
first: {{ tablerowloop.first }}
index: {{ tablerowloop.index }}
index0: {{ tablerowloop.index0 }}
last: {{ tablerowloop.last }}
length: {{ tablerowloop.length }}
rindex: {{ tablerowloop.rindex }}
rindex0: {{ tablerowloop.rindex0 }}
row: {{ tablerowloop.row }}
{% endtablerow %}
LIQUID

expected_output = <<~OUTPUT
<tr class="row1">
<td class="col1">
col: 1
col0: 0
col_first: true
col_last: false
first: true
index: 1
index0: 0
last: false
length: 2
rindex: 2
rindex0: 1
row: 1
</td><td class="col2">
col: 2
col0: 1
col_first: false
col_last: true
first: false
index: 2
index0: 1
last: true
length: 2
rindex: 1
rindex0: 0
row: 1
</td></tr>
OUTPUT

assert_template_result(expected_output, template)
end
end

0 comments on commit 6f8c53e

Please sign in to comment.