aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/routing_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/dispatch/routing_test.rb')
-rw-r--r--actionpack/test/dispatch/routing_test.rb10
1 files changed, 2 insertions, 8 deletions
diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb
index e29127f78f..7cfc6ef3d7 100644
--- a/actionpack/test/dispatch/routing_test.rb
+++ b/actionpack/test/dispatch/routing_test.rb
@@ -164,6 +164,8 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest
Routes
end
+ include Routes.named_url_helpers
+
def test_logout
with_test_routes do
delete '/logout'
@@ -728,14 +730,6 @@ class TestRoutingMapper < ActionDispatch::IntegrationTest
private
def with_test_routes
- real_routes, temp_routes = ActionDispatch::Routing::Routes, Routes
-
- ActionDispatch::Routing.module_eval { remove_const :Routes }
- ActionDispatch::Routing.module_eval { const_set :Routes, temp_routes }
-
yield
- ensure
- ActionDispatch::Routing.module_eval { remove_const :Routes }
- ActionDispatch::Routing.const_set(:Routes, real_routes)
end
end