diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2019-06-06 20:40:20 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-06 20:40:20 +0900 |
commit | 648144649a71310fc5950a2ffd6de7c284058108 (patch) | |
tree | f0e47c81742f4c1756de59deb1ffca1d2b9a61ed /actionpack/test | |
parent | 497256747905ad6bcea78b8d7e1e4458dc291d8c (diff) | |
parent | 00b3b68602159c7a6826cad721a4f7b2988832fc (diff) | |
download | rails-648144649a71310fc5950a2ffd6de7c284058108.tar.gz rails-648144649a71310fc5950a2ffd6de7c284058108.tar.bz2 rails-648144649a71310fc5950a2ffd6de7c284058108.zip |
Merge pull request #36426 from abhaynikam/bump-codeclimate-rubocop-version
Bump rubocop to 0.71
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/resources_test.rb | 2 | ||||
-rw-r--r-- | actionpack/test/dispatch/request_test.rb | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/actionpack/test/controller/resources_test.rb b/actionpack/test/controller/resources_test.rb index d2146f12a5..1e42a3a90d 100644 --- a/actionpack/test/controller/resources_test.rb +++ b/actionpack/test/controller/resources_test.rb @@ -36,7 +36,6 @@ class ResourcesTest < ActionController::TestCase collection: collection_methods, member: member_methods, path_names: path_names do - assert_restful_routes_for :messages, collection: collection_methods, member: member_methods, @@ -58,7 +57,6 @@ class ResourcesTest < ActionController::TestCase collection: collection_methods, member: member_methods, path_names: path_names do |options| - collection_methods.each_key do |action| assert_named_route "/messages/#{path_names[action] || action}", "#{action}_messages_path", action: action end diff --git a/actionpack/test/dispatch/request_test.rb b/actionpack/test/dispatch/request_test.rb index eb49396145..0ec8dd25e0 100644 --- a/actionpack/test/dispatch/request_test.rb +++ b/actionpack/test/dispatch/request_test.rb @@ -681,7 +681,6 @@ end class RequestMethod < BaseRequestTest test "method returns environment's request method when it has not been overridden by middleware".squish do - ActionDispatch::Request::HTTP_METHODS.each do |method| request = stub_request("REQUEST_METHOD" => method) |