class ActionDispatch::SystemTestCase

def method_missing(name, *args, &block)

def method_missing(name, *args, &block)
  if url_helpers.respond_to?(name)
    url_helpers.public_send(name, *args, &block)
  else
    super
  end
end