Merge pull request #9754 from macksmind/fix_actionpack_warnings

Fix rake test warnings in actionpack
This commit is contained in:
Rafael Mendonça França 2013-03-17 09:18:09 -07:00
commit b365354e59
2 changed files with 3 additions and 2 deletions

@ -324,7 +324,8 @@ def handle_render_error(view, e) #:nodoc:
end
def locals_code #:nodoc:
@locals.map { |key| "#{key} = local_assigns[:#{key}];" }.join
# Double assign to suppress the dreaded 'assigned but unused variable' warning
@locals.map { |key| "#{key} = #{key} = local_assigns[:#{key}];" }.join
end
def method_name #:nodoc:

@ -58,7 +58,7 @@ def test_protocol
end
def test_headers
render text: JSON.dump(request.headers.env)
render text: request.headers.env.to_json
end
def test_html_output