aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/abstract/abstract_controller_test.rb
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-03-10 18:36:00 -0200
committerSantiago Pastorino <santiago@wyeworks.com>2012-03-10 18:37:30 -0200
commit4751a699c9d20118e84dd657a96282329fc8bf85 (patch)
tree4c052278fa3eb746cc220540878954f2b304ae20 /actionpack/test/abstract/abstract_controller_test.rb
parentb0a93d650fd6299c3e83e2c7f9531923b88028da (diff)
downloadrails-4751a699c9d20118e84dd657a96282329fc8bf85.tar.gz
rails-4751a699c9d20118e84dd657a96282329fc8bf85.tar.bz2
rails-4751a699c9d20118e84dd657a96282329fc8bf85.zip
AbstractController.action_methods should return a Set
Diffstat (limited to 'actionpack/test/abstract/abstract_controller_test.rb')
-rw-r--r--actionpack/test/abstract/abstract_controller_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/abstract/abstract_controller_test.rb b/actionpack/test/abstract/abstract_controller_test.rb
index bf068aedcd..a59a9a3767 100644
--- a/actionpack/test/abstract/abstract_controller_test.rb
+++ b/actionpack/test/abstract/abstract_controller_test.rb
@@ -254,7 +254,7 @@ module AbstractController
class TestActionMethodsReloading < ActiveSupport::TestCase
test "action_methods should be reloaded after defining a new method" do
- assert_equal ["index"], Me6.action_methods
+ assert_equal Set.new(["index"]), Me6.action_methods
end
end