提交 4343e2dd 编写于 作者: S Steve Klabnik

Merge pull request #11789 from gaurish/multibyte_methods

Avoid defining multibyte method names in JSON decoding test for JRuby Compatitibility
......@@ -55,12 +55,13 @@ class TestJSONDecoding < ActiveSupport::TestCase
%q({"a":"Line1\u000aLine2"}) => {"a"=>"Line1\nLine2"}
}
TESTS.each do |json, expected|
test "json decodes #{json}" do
TESTS.each_with_index do |(json, expected), index|
test "json decodes #{index}" do
prev = ActiveSupport.parse_json_times
ActiveSupport.parse_json_times = true
silence_warnings do
assert_equal expected, ActiveSupport::JSON.decode(json)
assert_equal expected, ActiveSupport::JSON.decode(json), "JSON decoding \
failed for #{json}"
end
ActiveSupport.parse_json_times = prev
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册