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/test/journey/router_test.rb | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'actionpack/test/journey') 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