class RuboCop::Cop::Minitest::RefuteMatch
refute_match(matcher, string, ‘message’)
refute_match(matcher, string)
# good
refute(matcher.match(string), ‘message’)
refute(matcher.match(string))
# bad
@example
instead of using ‘refute(matcher.match(string))`.
This cop enforces the test to use `refute_match`