module RuboCop::Cop::RSpec::ExplicitHelper

def heredoc_argument?(matcher)

def heredoc_argument?(matcher)
  matcher.arguments.select do |arg|
    arg.type?(:str, :dstr, :xstr)
  end.any?(&:heredoc?)
end