mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 16:44:01 +02:00
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
This commit is contained in:
parent
a4f838c742
commit
a2369fc2fe
3 changed files with 14 additions and 8 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue