mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix failing test.
This commit is contained in:
parent
4e2852a487
commit
5a81dbf489
1 changed files with 2 additions and 2 deletions
|
@ -77,9 +77,9 @@ module Dispatching
|
||||||
|
|
||||||
test "action methods" do
|
test "action methods" do
|
||||||
assert_equal Set.new(%w(
|
assert_equal Set.new(%w(
|
||||||
|
index
|
||||||
modify_response_headers
|
modify_response_headers
|
||||||
modify_response_body_twice
|
modify_response_body_twice
|
||||||
index
|
|
||||||
modify_response_body
|
modify_response_body
|
||||||
show_actions
|
show_actions
|
||||||
)), SimpleController.action_methods
|
)), SimpleController.action_methods
|
||||||
|
@ -88,7 +88,7 @@ module Dispatching
|
||||||
assert_equal Set.new, Submodule::ContainedEmptyController.action_methods
|
assert_equal Set.new, Submodule::ContainedEmptyController.action_methods
|
||||||
|
|
||||||
get "/dispatching/simple/show_actions"
|
get "/dispatching/simple/show_actions"
|
||||||
assert_body "actions: modify_response_headers, modify_response_body_twice, index, modify_response_body, show_actions"
|
assert_body "actions: index, modify_response_body, modify_response_body_twice, modify_response_headers, show_actions"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue