From 7fa6600b52b7477a958473d504415b7610d39b34 Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Fri, 14 Aug 2015 10:20:28 -0700 Subject: use predicate methods instead of hard coding verb strings also change the feeler to subclass AD::Request so that it has all the methods that Request has --- actionpack/lib/action_dispatch/journey/router.rb | 2 +- actionpack/test/dispatch/routing_test.rb | 3 ++- actionpack/test/journey/router_test.rb | 9 ++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/actionpack/lib/action_dispatch/journey/router.rb b/actionpack/lib/action_dispatch/journey/router.rb index 543ffc144e..f649588520 100644 --- a/actionpack/lib/action_dispatch/journey/router.rb +++ b/actionpack/lib/action_dispatch/journey/router.rb @@ -101,7 +101,7 @@ module ActionDispatch } routes = - if req.request_method == "HEAD" + if req.head? match_head_routes(routes, req) else match_routes(routes, req) diff --git a/actionpack/test/dispatch/routing_test.rb b/actionpack/test/dispatch/routing_test.rb index 280b258da6..6e8d7ca7a9 100644 --- a/actionpack/test/dispatch/routing_test.rb +++ b/actionpack/test/dispatch/routing_test.rb @@ -3618,7 +3618,7 @@ private end class TestAltApp < ActionDispatch::IntegrationTest - class AltRequest + class AltRequest < ActionDispatch::Request attr_accessor :path_parameters, :path_info, :script_name attr_reader :env @@ -3627,6 +3627,7 @@ class TestAltApp < ActionDispatch::IntegrationTest @env = env @path_info = "/" @script_name = "" + super end def request_method diff --git a/actionpack/test/journey/router_test.rb b/actionpack/test/journey/router_test.rb index 5c6d9645fb..427d63d75d 100644 --- a/actionpack/test/journey/router_test.rb +++ b/actionpack/test/journey/router_test.rb @@ -13,7 +13,10 @@ module ActionDispatch @formatter = Formatter.new(@routes) end - class FakeRequestFeeler < Struct.new(:env, :called) + class FakeRequestFeeler < ActionDispatch::Request + attr_writer :env + attr_accessor :called + def new env self.env = env self @@ -23,10 +26,6 @@ module ActionDispatch self.called = true 'world' end - - def path_info; env['PATH_INFO']; end - def request_method; env['REQUEST_METHOD']; end - def ip; env['REMOTE_ADDR']; end end def test_dashes -- cgit v1.2.3