class RuboCop::Cop::Capybara::NegationMatcher

def replaced_runner

def replaced_runner
  case style
  when :have_no
    'to'
  when :not_to
    'not_to'
  else
    # :nocov:
    :noop
    # :nocov:
  end
end