mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-19 10:52:48 -07:00
Instrument forloop.name
This commit is contained in:
@@ -9,7 +9,12 @@ module Liquid
|
|||||||
@index = 0
|
@index = 0
|
||||||
end
|
end
|
||||||
|
|
||||||
attr_reader :name, :length, :parentloop
|
attr_reader :length, :parentloop
|
||||||
|
|
||||||
|
def name
|
||||||
|
Usage.increment('forloop_drop_name')
|
||||||
|
@name
|
||||||
|
end
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@index + 1
|
@index + 1
|
||||||
|
|||||||
@@ -447,4 +447,20 @@ HERE
|
|||||||
Template.parse('{% for item in items offset:2 %}{{item}}{% endfor %}')
|
Template.parse('{% for item in items offset:2 %}{{item}}{% endfor %}')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_instrument_forloop_drop_name
|
||||||
|
assigns = { 'items' => [1, 2, 3, 4, 5] }
|
||||||
|
|
||||||
|
assert_usage_increment('forloop_drop_name', times: 5) do
|
||||||
|
Template.parse('{% for item in items %}{{forloop.name}}{% endfor %}').render!(assigns)
|
||||||
|
end
|
||||||
|
|
||||||
|
assert_usage_increment('forloop_drop_name', times: 0) do
|
||||||
|
Template.parse('{% for item in items %}{{forloop.index}}{% endfor %}').render!(assigns)
|
||||||
|
end
|
||||||
|
|
||||||
|
assert_usage_increment('forloop_drop_name', times: 0) do
|
||||||
|
Template.parse('{% for item in items %}{{item}}{% endfor %}').render!(assigns)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user