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:
nobu 2015-10-28 07:56:13 +00:00
parent a4f838c742
commit a2369fc2fe
3 changed files with 14 additions and 8 deletions

View file

@ -686,7 +686,7 @@ class TestModule < Test::Unit::TestCase
assert_raise(NameError) { c1.const_set("X\u{3042}".encode("utf-32be"), :foo) }
assert_raise(NameError) { c1.const_set("X\u{3042}".encode("utf-32le"), :foo) }
cx = EnvUtil.labeled_class("X\u{3042}")
EnvUtil.with_default_internal(Encoding::UTF_8) {
EnvUtil.with_default_external(Encoding::UTF_8) {
assert_raise_with_message(TypeError, /X\u{3042}/) { c1.const_set(cx, :foo) }
}
end