1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/action_controller/metal/testing.rb

17 lines
311 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module ActionController
module Testing
extend ActiveSupport::Concern
2009-05-21 15:48:26 -04:00
# Behavior specific to functional tests
module Functional # :nodoc:
def recycle!
@_url_options = nil
2012-07-03 20:18:31 -04:00
self.formats = nil
self.params = nil
end
end
end
end