ruby-changes:23058
From: nobu <ko1@a...>
Date: Thu, 22 Mar 2012 18:37:58 +0900 (JST)
Subject: [ruby-changes:23058] nobu:r35108 (trunk): * test/ruby/test_m17n.rb (test_env): show failed values.
nobu 2012-03-22 18:37:47 +0900 (Thu, 22 Mar 2012) New Revision: 35108 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=35108 Log: * test/ruby/test_m17n.rb (test_env): show failed values. Modified files: trunk/test/ruby/test_m17n.rb Index: test/ruby/test_m17n.rb =================================================================== --- test/ruby/test_m17n.rb (revision 35107) +++ test/ruby/test_m17n.rb (revision 35108) @@ -1257,8 +1257,8 @@ 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 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/