class RuboCop::Cop::Minitest::RefutePredicate


refute_predicate(obj, :one?, ‘message’)
refute_predicate(obj, :one?)
# good
refute(obj.one?, ‘message’)
refute(obj.one?)
# bad
@example
instead of using ‘refute(obj.a_predicate_method?)`.
Enforces the test to use `refute_predicate`

def assertion_type

def assertion_type
  'refute'
end