class RuboCop::Cop::Minitest::AssertIncludes

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

@example

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

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