module ActionDispatch::Integration::Runner

def method_missing(method, ...)

Delegate unhandled messages to the current session instance.
def method_missing(method, ...)
  if integration_session.respond_to?(method)
    integration_session.public_send(method, ...).tap do
      copy_session_variables!
    end
  else
    super
  end
end