summary refs log tree commit
path: root/test/spec_sendfile.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_sendfile.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_sendfile.rb')
-rw-r--r--test/spec_sendfile.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/spec_sendfile.rb b/test/spec_sendfile.rb
index c0ef5e5d..5205b671 100644
--- a/test/spec_sendfile.rb
+++ b/test/spec_sendfile.rb
@@ -7,7 +7,7 @@ require 'tmpdir'
 separate_testing do
   require_relative '../lib/rack/sendfile'
   require_relative '../lib/rack/lint'
-  require_relative '../lib/rack/mock'
+  require_relative '../lib/rack/mock_request'
 end
 
 describe Rack::Sendfile do