Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Usage.increment calls that have been shown to in fact be used #1645

Merged
merged 1 commit into from Oct 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 1 addition & 4 deletions lib/liquid/forloop_drop.rb
Expand Up @@ -30,10 +30,7 @@ def initialize(name, length, parentloop)
# @liquid_return [forloop]
attr_reader :parentloop

def name
Usage.increment('forloop_drop_name')
@name
end
attr_reader :name

# @liquid_public_docs
# @liquid_summary
Expand Down
1 change: 0 additions & 1 deletion lib/liquid/tags/for.rb
Expand Up @@ -177,7 +177,6 @@ def set_attribute(key, expr)
case key
when 'offset'
@from = if expr == 'continue'
Usage.increment('for_offset_continue')
:continue
else
parse_expression(expr)
Expand Down
26 changes: 0 additions & 26 deletions test/integration/tags/for_tag_test.rb
Expand Up @@ -450,30 +450,4 @@ def test_for_cleans_up_registers

assert(context.registers[:for_stack].empty?)
end

def test_instrument_for_offset_continue
assert_usage_increment('for_offset_continue') do
Template.parse('{% for item in items offset:continue %}{{item}}{% endfor %}')
end

assert_usage_increment('for_offset_continue', times: 0) do
Template.parse('{% for item in items offset:2 %}{{item}}{% endfor %}')
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