class RuboCop::Cop::RSpec::ReceiveMessages

def normalize_receive_arg(receive_arg)

def normalize_receive_arg(receive_arg)
  if requires_quotes?(receive_arg)
    "'#{receive_arg}'"
  else
    receive_arg
  end
end