summaryrefslogtreecommitdiff
path: root/test/ruby/test_exception.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-28 07:56:13 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-28 07:56:13 +0000
commita2369fc2feb1f75dc72eeddbcc512ca74a70d0dd (patch)
tree0e8110d079ecbe58c564a9ccace85295a90aef93 /test/ruby/test_exception.rb
parenta4f838c742dc758de8dec0c002e20d22c791b85a (diff)
encoding for inspect
* test/ruby/test_{exception,module,object}.rb: inspect result depend on the default external encoding. [Feature #10881] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52323 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_exception.rb')
-rw-r--r--test/ruby/test_exception.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/ruby/test_exception.rb b/test/ruby/test_exception.rb
index a3b392ae00..f8ddd9d3fa 100644
--- a/test/ruby/test_exception.rb
+++ b/test/ruby/test_exception.rb
@@ -429,9 +429,11 @@ end.join
bug3237 = '[ruby-core:29948]'
str = "\u2600"
id = :"\u2604"
- msg = "undefined method `#{id}' for #{str.inspect}:String"
- assert_raise_with_message(NoMethodError, msg, bug3237) do
- str.__send__(id)
+ 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
end
end