mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/ruby/test_method.rb (TestMethod#test_{instance,define}_method): assumed
default external is UTF-8. fixed failures introduced at r51175. * test/-ext-/symbol/test_type.rb (Test_Symbol::TestType#test_check_{id,symbol}_invalid_type): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51189 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3294c272d6
commit
fe94eaa5ae
2 changed files with 24 additions and 16 deletions
|
@ -122,17 +122,21 @@ module Test_Symbol
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_check_id_invalid_type
|
def test_check_id_invalid_type
|
||||||
cx = EnvUtil.labeled_class("X\u{1f431}")
|
EnvUtil.with_default_external(Encoding::UTF_8) do
|
||||||
assert_raise_with_message(TypeError, /X\u{1F431}/) {
|
cx = EnvUtil.labeled_class("X\u{1f431}")
|
||||||
Bug::Symbol.pinneddown?(cx)
|
assert_raise_with_message(TypeError, /X\u{1F431}/) {
|
||||||
}
|
Bug::Symbol.pinneddown?(cx)
|
||||||
|
}
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_check_symbol_invalid_type
|
def test_check_symbol_invalid_type
|
||||||
cx = EnvUtil.labeled_class("X\u{1f431}")
|
EnvUtil.with_default_external(Encoding::UTF_8) do
|
||||||
assert_raise_with_message(TypeError, /X\u{1F431}/) {
|
cx = EnvUtil.labeled_class("X\u{1f431}")
|
||||||
Bug::Symbol.find(cx)
|
assert_raise_with_message(TypeError, /X\u{1F431}/) {
|
||||||
}
|
Bug::Symbol.find(cx)
|
||||||
|
}
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -251,10 +251,12 @@ class TestMethod < Test::Unit::TestCase
|
||||||
m = o.method(:bar).unbind
|
m = o.method(:bar).unbind
|
||||||
assert_raise(TypeError) { m.bind(Object.new) }
|
assert_raise(TypeError) { m.bind(Object.new) }
|
||||||
|
|
||||||
cx = EnvUtil.labeled_class("X\u{1f431}")
|
EnvUtil.with_default_external(Encoding::UTF_8) do
|
||||||
assert_raise_with_message(TypeError, /X\u{1f431}/) {
|
cx = EnvUtil.labeled_class("X\u{1f431}")
|
||||||
o.method(cx)
|
assert_raise_with_message(TypeError, /X\u{1f431}/) {
|
||||||
}
|
o.method(cx)
|
||||||
|
}
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_bind_module_instance_method
|
def test_bind_module_instance_method
|
||||||
|
@ -283,10 +285,12 @@ class TestMethod < Test::Unit::TestCase
|
||||||
assert_raise(TypeError) do
|
assert_raise(TypeError) do
|
||||||
Class.new.class_eval { define_method(:bar, o.method(:bar)) }
|
Class.new.class_eval { define_method(:bar, o.method(:bar)) }
|
||||||
end
|
end
|
||||||
cx = EnvUtil.labeled_class("X\u{1f431}")
|
EnvUtil.with_default_external(Encoding::UTF_8) do
|
||||||
assert_raise_with_message(TypeError, /X\u{1F431}/) {
|
cx = EnvUtil.labeled_class("X\u{1f431}")
|
||||||
Class.new {define_method(cx) {}}
|
assert_raise_with_message(TypeError, /X\u{1F431}/) {
|
||||||
}
|
Class.new {define_method(cx) {}}
|
||||||
|
}
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_define_method_no_proc
|
def test_define_method_no_proc
|
||||||
|
|
Loading…
Reference in a new issue