aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/testing/assertions/selector.rb
diff options
context:
space:
mode:
authorAgis Anastasopoulos <corestudiosinc@gmail.com>2013-04-08 22:13:13 +0300
committerAgis Anastasopoulos <corestudiosinc@gmail.com>2013-04-08 22:52:32 +0300
commita779ea9d57b00bd3b59f5546603271c2d302247c (patch)
treeaa6e31799b7c3cd17db03652fdb802c322c0dfd9 /actionpack/lib/action_dispatch/testing/assertions/selector.rb
parente2e9eed3dc6205ec0f9925a8c452067fae9a552d (diff)
downloadrails-a779ea9d57b00bd3b59f5546603271c2d302247c.tar.gz
rails-a779ea9d57b00bd3b59f5546603271c2d302247c.tar.bz2
rails-a779ea9d57b00bd3b59f5546603271c2d302247c.zip
Mark unused variables and make some style fixes
It'd be a nice convention to mark the unused variables like this, now that Ruby 2 will issue no warnings for such vars being unused.
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 e481f3b245..3253a3d424 100644
--- a/actionpack/lib/action_dispatch/testing/assertions/selector.rb
+++ b/actionpack/lib/action_dispatch/testing/assertions/selector.rb
@@ -377,8 +377,8 @@ module ActionDispatch
node.content.gsub(/<!\[CDATA\[(.*)(\]\]>)?/m) { Rack::Utils.escapeHTML($1) }
end
- selected = elements.map do |_element|
- text = _element.children.select{ |c| not c.tag? }.map{ |c| fix_content[c] }.join
+ selected = elements.map do |elem|
+ text = elem.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