module RuboCop::Cop::RSpec::ExplicitHelper

def replaceable_matcher?(matcher)

def replaceable_matcher?(matcher)
  case matcher.method_name.to_s
  when 'include'
    matcher.arguments.one?
  else
    true
  end
end