module RuboCop::Cop::Minitest::PredicateAssertionHandleable

def predicate_method?(first_argument)

def predicate_method?(first_argument)
  first_argument.respond_to?(:predicate_method?) && first_argument.predicate_method?
end