aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2018-09-24 14:49:26 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2018-09-24 15:39:15 -0700
commit4f96e739c215331562c09cd215536c35a85508fd (patch)
tree22ab11502954a40ce72f51efdfbc2f206a189a09 /actionpack/test
parent0a829f7db10263c5bf5f8b4ee04ea92a05ecdd39 (diff)
downloadrails-4f96e739c215331562c09cd215536c35a85508fd.tar.gz
rails-4f96e739c215331562c09cd215536c35a85508fd.tar.bz2
rails-4f96e739c215331562c09cd215536c35a85508fd.zip
Remove deprecated catch-all route in the AV tests
This commit removes a deprecated catch-all route in the AV tests. It defines and includes the necessary routes for each test such that we don't need the catch-all anymore. This also helps push us toward #33970
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/abstract_unit.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/test/abstract_unit.rb b/actionpack/test/abstract_unit.rb
index f4787ed27a..83ba0a8497 100644
--- a/actionpack/test/abstract_unit.rb
+++ b/actionpack/test/abstract_unit.rb
@@ -232,6 +232,7 @@ module ActionController
routes = ActionDispatch::Routing::RouteSet.new
routes.draw(&block)
include routes.url_helpers
+ routes
end
end