mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Add test for dynamic dispatch based on action_name accessor.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1757 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -203,6 +203,18 @@ class FilterTest < Test::Unit::TestCase
|
||||
end
|
||||
end
|
||||
|
||||
class DynamicDispatchController < ActionController::Base
|
||||
before_filter :choose
|
||||
|
||||
%w(foo bar baz).each do |action|
|
||||
define_method(action) { render :text => action }
|
||||
end
|
||||
|
||||
private
|
||||
def choose
|
||||
self.action_name = params[:choose]
|
||||
end
|
||||
end
|
||||
|
||||
def test_added_filter_to_inheritance_graph
|
||||
assert_equal [ :fire_flash, :ensure_login ], TestController.before_filters
|
||||
@@ -321,6 +333,15 @@ class FilterTest < Test::Unit::TestCase
|
||||
end
|
||||
end
|
||||
|
||||
def test_dynamic_dispatch
|
||||
%w(foo bar baz).each do |action|
|
||||
request = ActionController::TestRequest.new
|
||||
request.query_parameters[:choose] = action
|
||||
response = DynamicDispatchController.process(request, ActionController::TestResponse.new)
|
||||
assert_equal action, response.body
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
def test_process(controller, action = "show")
|
||||
request = ActionController::TestRequest.new
|
||||
|
||||
Reference in New Issue
Block a user