object.c (rb_obj_match): use rb_warn for deprecation warning
Now the warning is printed even without -w option. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66576 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2b21744efa
commit
e030e9f0b8
4
object.c
4
object.c
@ -1687,8 +1687,8 @@ rb_false(VALUE obj)
|
|||||||
static VALUE
|
static VALUE
|
||||||
rb_obj_match(VALUE obj1, VALUE obj2)
|
rb_obj_match(VALUE obj1, VALUE obj2)
|
||||||
{
|
{
|
||||||
rb_warning("deprecated Object#=~ is called on %"PRIsVALUE
|
rb_warn("deprecated Object#=~ is called on %"PRIsVALUE
|
||||||
"; it always returns nil", rb_obj_class(obj1));
|
"; it always returns nil", rb_obj_class(obj1));
|
||||||
return Qnil;
|
return Qnil;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1529,7 +1529,9 @@ class TestMiniTestUnitTestCase < MiniTest::Unit::TestCase
|
|||||||
def test_refute_match_matcher_object
|
def test_refute_match_matcher_object
|
||||||
@assertion_count = 2
|
@assertion_count = 2
|
||||||
non_verbose do
|
non_verbose do
|
||||||
@tc.refute_match Object.new, 5 # default #=~ returns false
|
obj = Object.new
|
||||||
|
def obj.=~(other); false; end
|
||||||
|
@tc.refute_match obj, 5
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -946,4 +946,13 @@ class TestObject < Test::Unit::TestCase
|
|||||||
end
|
end
|
||||||
EOS
|
EOS
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_matcher
|
||||||
|
assert_warning(/deprecated Object#=~ is called on Object/) do
|
||||||
|
assert_equal(Object.new =~ 42, nil)
|
||||||
|
end
|
||||||
|
assert_warning(/deprecated Object#=~ is called on Array/) do
|
||||||
|
assert_equal([] =~ 42, nil)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user