mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Show failed environment variables
This commit is contained in:
parent
0a38212e57
commit
dfa67db62b
1 changed files with 2 additions and 2 deletions
|
@ -1331,8 +1331,8 @@ class TestM17N < Test::Unit::TestCase
|
|||
env_encoding = Encoding.find("locale")
|
||||
end
|
||||
ENV.each {|k, v|
|
||||
assert_equal(env_encoding, k.encoding, k)
|
||||
assert_equal(env_encoding, v.encoding, v)
|
||||
assert_equal(env_encoding, k.encoding, proc {"key(#{k.encoding})=#{k.dump}"})
|
||||
assert_equal(env_encoding, v.encoding, proc {"key(#{k.encoding})=#{k.dump}\n" "value(#{v.encoding})=#{v.dump}"})
|
||||
}
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue