aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/testing/assertions/selector.rb
diff options
context:
space:
mode:
authorEmilio Tagua <miloops@gmail.com>2010-09-27 15:18:35 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2010-09-27 16:43:17 -0300
commit1ab2ab07b5e7c4031c014175887e9f20b8f60a4c (patch)
treec2cc5c3dac7623044599b25b4b3239a5b6ad6142 /actionpack/lib/action_dispatch/testing/assertions/selector.rb
parent2f326b7f27349b933fe617d83b3f80c6573ce5d8 (diff)
downloadrails-1ab2ab07b5e7c4031c014175887e9f20b8f60a4c.tar.gz
rails-1ab2ab07b5e7c4031c014175887e9f20b8f60a4c.tar.bz2
rails-1ab2ab07b5e7c4031c014175887e9f20b8f60a4c.zip
Remove more warnings shadowing outer local variable.
Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
Diffstat (limited to 'actionpack/lib/action_dispatch/testing/assertions/selector.rb')
-rw-r--r--actionpack/lib/action_dispatch/testing/assertions/selector.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/testing/assertions/selector.rb b/actionpack/lib/action_dispatch/testing/assertions/selector.rb
index 86fba87586..353be10d20 100644
--- a/actionpack/lib/action_dispatch/testing/assertions/selector.rb
+++ b/actionpack/lib/action_dispatch/testing/assertions/selector.rb
@@ -513,8 +513,8 @@ module ActionDispatch
node.content.gsub(/<!\[CDATA\[(.*)(\]\]>)?/m) { Rack::Utils.escapeHTML($1) }
end
- selected = elements.map do |ele|
- text = ele.children.select{ |c| not c.tag? }.map{ |c| fix_content[c] }.join
+ selected = elements.map do |_element|
+ text = _element.children.select{ |c| not c.tag? }.map{ |c| fix_content[c] }.join
root = HTML::Document.new(CGI.unescapeHTML("<encoded>#{text}</encoded>")).root
css_select(root, "encoded:root", &block)[0]
end