2009-05-01 19:03:46 -04:00
|
|
|
module ActionController
|
|
|
|
module Testing
|
2009-05-28 12:35:36 -04:00
|
|
|
extend ActiveSupport::Concern
|
2009-05-21 15:48:26 -04:00
|
|
|
|
2009-12-20 21:05:26 -05:00
|
|
|
include RackDelegation
|
2009-05-27 04:40:43 -04:00
|
|
|
|
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
|
2009-05-25 12:05:58 -04:00
|
|
|
|
2012-07-03 20:13:04 -04:00
|
|
|
# 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
|
2012-07-03 20:13:04 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-05-25 12:05:58 -04:00
|
|
|
module ClassMethods
|
|
|
|
def before_filters
|
|
|
|
_process_action_callbacks.find_all{|x| x.kind == :before}.map{|x| x.name}
|
|
|
|
end
|
|
|
|
end
|
2009-05-01 19:03:46 -04:00
|
|
|
end
|
2009-05-21 23:22:18 -04:00
|
|
|
end
|