module ActionDispatch::Integration::Runner
def method_missing(method, *args, &block)
def method_missing(method, *args, &block) if integration_session.respond_to?(method) integration_session.public_send(method, *args, &block).tap do copy_session_variables! end else super end end