class RuboCop::Cop::Minitest::AssertIncludes


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