Actions
Bug #895
closedMiniTest::Assertions#refute_instance_of should use Object#instance_of? instead Module#===
Description
=begin
see [ruby-dev:37458], r20798 and r20800
Fixnum === 1 # => true
Numeric === 1 # => true
1.kind_of?(Fixnum) # => true
1.kind_of?(Numeric) # => true
1.instance_of?(Fixnum) # => true
1.instance_of?(Numeric) # => false
=end
Actions
Like0
Like0Like0Like0Like0