summary refs log tree commit
path: root/test/spec_conditional_get.rb
diff options
context:
space:
mode:
authorSamuel Williams <samuel.williams@oriontransfer.co.nz>2022-08-03 14:28:08 +1200
committerGitHub <noreply@github.com>2022-08-03 14:28:08 +1200
commit75fff851b46a2ada897eaa9dca74812592c39aa3 (patch)
tree8ffe6fcaf558f470233e1b5538e9bebece6979b6 /test/spec_conditional_get.rb
parent3012643ea6a89fefe8cc0c68d4992531c367c906 (diff)
downloadrack-75fff851b46a2ada897eaa9dca74812592c39aa3.tar.gz
Move Rack::MockRequest/Response into dedicated files. (#1935)
* Move Rack::MockRequest/Response into dedicated files.

At some point I think we want to improve the implementation of `Rack::Mock`
in a separate gem. So let's be consistent with naming these files to avoid
clobbering namespace in the future.
Diffstat (limited to 'test/spec_conditional_get.rb')
-rw-r--r--test/spec_conditional_get.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/spec_conditional_get.rb b/test/spec_conditional_get.rb
index 8811bb27..d028b3de 100644
--- a/test/spec_conditional_get.rb
+++ b/test/spec_conditional_get.rb
@@ -6,7 +6,7 @@ require 'time'
 separate_testing do
   require_relative '../lib/rack/conditional_get'
   require_relative '../lib/rack/lint'
-  require_relative '../lib/rack/mock'
+  require_relative '../lib/rack/mock_request'
 end
 
 describe Rack::ConditionalGet do