summaryrefslogtreecommitdiff
path: root/test/spec_runtime.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_runtime.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_runtime.rb')
-rw-r--r--test/spec_runtime.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/spec_runtime.rb b/test/spec_runtime.rb
index 0e22d2b5..5f23dce7 100644
--- a/test/spec_runtime.rb
+++ b/test/spec_runtime.rb
@@ -5,7 +5,7 @@ require_relative 'helper'
separate_testing do
require_relative '../lib/rack/runtime'
require_relative '../lib/rack/lint'
- require_relative '../lib/rack/mock'
+ require_relative '../lib/rack/mock_request'
end
describe Rack::Runtime do