aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_method.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
commitdb882e44f92f8e0ea60b86a0c5320fb344a0e443 (patch)
tree7d8a4973cb71de85d1917b1bf17c5cd6f625393d /test/ruby/test_method.rb
parent035ce9f7b5856dc6508c5453fe595f023332a979 (diff)
downloadruby-db882e44f92f8e0ea60b86a0c5320fb344a0e443.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_method.rb')
-rw-r--r--test/ruby/test_method.rb16
1 files changed, 6 insertions, 10 deletions
diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb
index 7816e6c3a0..a87f46092d 100644
--- a/test/ruby/test_method.rb
+++ b/test/ruby/test_method.rb
@@ -252,11 +252,9 @@ class TestMethod < Test::Unit::TestCase
m = o.method(:bar).unbind
assert_raise(TypeError) { m.bind(Object.new) }
- EnvUtil.with_default_external(Encoding::UTF_8) do
- cx = EnvUtil.labeled_class("X\u{1f431}")
- assert_raise_with_message(TypeError, /X\u{1f431}/) {
- o.method(cx)
- }
+ cx = EnvUtil.labeled_class("X\u{1f431}")
+ assert_raise_with_message(TypeError, /X\u{1f431}/) do
+ o.method(cx)
end
end
@@ -286,11 +284,9 @@ class TestMethod < Test::Unit::TestCase
assert_raise(TypeError) do
Class.new.class_eval { define_method(:bar, o.method(:bar)) }
end
- EnvUtil.with_default_external(Encoding::UTF_8) do
- cx = EnvUtil.labeled_class("X\u{1f431}")
- assert_raise_with_message(TypeError, /X\u{1F431}/) {
- Class.new {define_method(cx) {}}
- }
+ cx = EnvUtil.labeled_class("X\u{1f431}")
+ assert_raise_with_message(TypeError, /X\u{1F431}/) do
+ Class.new {define_method(cx) {}}
end
end