class RuboCop::RSpec::Wording

def remove_should_and_pluralize

def remove_should_and_pluralize
  _should, *words = text.split
  words.each_with_index do |word, index|
    next if ignored_word?(word)
    words[index] = substitute(word)
    break
  end
  words.join(' ')
end