class RuboCop::Cop::Minitest::RefuteIncludes


refute_includes(collection, object, ‘message’)
refute_includes(collection, object)
# good
refute(collection.include?(object), ‘message’)
refute(collection.include?(object))
# bad
@example
instead of using ‘refute(collection.include?(object))`.
Enforces the test to use `refute_includes`