diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2018-09-24 14:49:26 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2018-09-24 15:39:15 -0700 |
commit | 4f96e739c215331562c09cd215536c35a85508fd (patch) | |
tree | 22ab11502954a40ce72f51efdfbc2f206a189a09 /actionpack | |
parent | 0a829f7db10263c5bf5f8b4ee04ea92a05ecdd39 (diff) | |
download | rails-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')
-rw-r--r-- | actionpack/lib/action_dispatch/testing/assertions/routing.rb | 5 | ||||
-rw-r--r-- | actionpack/test/abstract_unit.rb | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/testing/assertions/routing.rb b/actionpack/lib/action_dispatch/testing/assertions/routing.rb index 77cb311630..f11ae0e023 100644 --- a/actionpack/lib/action_dispatch/testing/assertions/routing.rb +++ b/actionpack/lib/action_dispatch/testing/assertions/routing.rb @@ -9,6 +9,11 @@ module ActionDispatch module Assertions # Suite of assertions to test routes generated by \Rails and the handling of requests made to them. module RoutingAssertions + def setup # :nodoc: + @routes = nil + super + end + # Asserts that the routing of the given +path+ was handled correctly and that the parsed options (given in the +expected_options+ hash) # match +path+. Basically, it asserts that \Rails recognizes the route given by +expected_options+. # 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 |