class RuboCop::Cop::Minitest::RefuteMatch

This cop enforces the test to use `refute_match` instead of using `refute(matcher.match(string))`.

@example

# bad
refute(matcher.match(string))
refute(matcher.match(string), 'message')

# good
refute_match(matcher, string)
refute_match(matcher, string, 'message')