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
2015-10-29 14:12:19 -07:00

20 lines
426 B
Ruby

module ActionController
module Testing
extend ActiveSupport::Concern
# Behavior specific to functional tests
module Functional # :nodoc:
def recycle!
@_url_options = nil
self.formats = nil
self.params = nil
end
end
module ClassMethods
def before_filters
_process_action_callbacks.find_all{|x| x.kind == :before}.map(&:name)
end
end
end
end