class RuboCop::Cop::RSpec::VariableName

def on_send(node)

def on_send(node)
  variable_definition?(node) do |variable|
    return if variable.dstr_type? || variable.dsym_type?
    return if matches_ignored_pattern?(variable.value)
    check_name(node, variable.value, variable.loc.expression)
  end
end