Sha256: 32bfadea349c878c670b44b127e7af5abb44b5513fd73e3e9b8235734e73430c
Contents?: true
Size: 651 Bytes
Versions: 14
Compression:
Stored size: 651 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop module Minitest # This cop enforces the test to use `assert_instance_of(Class, object)` # over `assert(object.instance_of?(Class))`. # # @example # # bad # assert(object.instance_of?(Class)) # assert(object.instance_of?(Class), 'message') # # # good # assert_instance_of(Class, object) # assert_instance_of(Class, object, 'message') # class AssertInstanceOf < Base extend MinitestCopRule define_rule :assert, target_method: :instance_of?, inverse: true end end end end
Version data entries
14 entries across 14 versions & 1 rubygems