module MiniTest::Assertions

def refute_kind_of cls, obj, msg = nil # TODO: merge with instance_of

TODO: merge with instance_of
def refute_kind_of cls, obj, msg = nil # TODO: merge with instance_of
  msg = message(msg) { "Expected #{mu_pp(obj)} to not be a kind of #{cls}" }
  refute obj.kind_of?(cls), msg
end