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

33 lines
739 B
Ruby
Raw Normal View History

module ActionController
module Testing
extend ActiveSupport::Concern
2009-05-21 15:48:26 -04:00
include RackDelegation
2009-05-21 15:48:26 -04:00
# TODO : Rewrite tests using controller.headers= to use Rack env
def headers=(new_headers)
@_response ||= ActionDispatch::Response.new
@_response.headers.replace(new_headers)
end
# Behavior specific to functional tests
module Functional # :nodoc:
def set_response!(request)
end
def recycle!
@_url_options = nil
2012-07-03 20:18:31 -04:00
self.response_body = nil
self.formats = nil
self.params = nil
end
end
module ClassMethods
def before_filters
_process_action_callbacks.find_all{|x| x.kind == :before}.map{|x| x.name}
end
end
end
end