1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/ruby/test_m17n.rb (test_env): show failed values.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35108 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-03-22 09:37:47 +00:00
parent d28c18966d
commit 0b83d3b27b

View file

@ -1257,8 +1257,8 @@ class TestM17N < Test::Unit::TestCase
def test_env
locale_encoding = Encoding.find("locale")
ENV.each {|k, v|
assert_equal(locale_encoding, k.encoding)
assert_equal(locale_encoding, v.encoding)
assert_equal(locale_encoding, k.encoding, k)
assert_equal(locale_encoding, v.encoding, v)
}
end