aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_exception.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-09 01:25:11 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-04-09 01:25:11 +0000
commit404bf57aaffd64cb251574e2916e393d272f77a3 (patch)
tree7d8a4973cb71de85d1917b1bf17c5cd6f625393d /test/ruby/test_exception.rb
parent56417d1f24ab6f505f431de067d3cfa596600c65 (diff)
downloadruby-404bf57aaffd64cb251574e2916e393d272f77a3.tar.gz
assertions.rb: set default internal encoding
* test/lib/test/unit/assertions.rb (assert_raise_with_message): set default internal encoding to the excpected message, which affects String#inspect in messages. * test/lib/test/unit/assertions.rb (assert_warning): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54522 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_exception.rb')
-rw-r--r--test/ruby/test_exception.rb8
1 files changed, 3 insertions, 5 deletions
diff --git a/test/ruby/test_exception.rb b/test/ruby/test_exception.rb
index 262d27f080..5023262e5d 100644
--- a/test/ruby/test_exception.rb
+++ b/test/ruby/test_exception.rb
@@ -430,11 +430,9 @@ end.join
bug3237 = '[ruby-core:29948]'
str = "\u2600"
id = :"\u2604"
- EnvUtil.with_default_external(Encoding::UTF_8) do
- msg = "undefined method `#{id}' for #{str.inspect}:String"
- assert_raise_with_message(NoMethodError, msg, bug3237) do
- str.__send__(id)
- end
+ msg = "undefined method `#{id}' for \"#{str}\":String"
+ assert_raise_with_message(NoMethodError, msg, bug3237) do
+ str.__send__(id)
end
end