class RuboCop::Cop::Minitest::RefuteIncludes

This cop enforces the test to use `refute_includes` instead of using `refute(collection.include?(object))`.

@example

# bad
refute(collection.include?(object))
refute(collection.include?(object), 'message')

# good
refute_includes(collection, object)
refute_includes(collection, object, 'message')