diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2022-01-20 17:37:44 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-20 17:37:44 -0800 |
commit | 1760292adeb6900c54270dfdd9490d1592a318fd (patch) | |
tree | ba702679001631de6279fe2e2c5f1dda7dea7bb2 /test/spec_lint.rb | |
parent | dbec6b653b835efe24028744f1651efa0f6ebd5e (diff) | |
parent | eef251d3758741fec514356c117ff791a4c23347 (diff) | |
download | rack-master.tar.gz |
Merge pull request #1745 from ioquatix/streamingmaster
Support callable body for explicit streaming support.
Diffstat (limited to 'test/spec_lint.rb')
-rwxr-xr-x | test/spec_lint.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/spec_lint.rb b/test/spec_lint.rb index 06003a9a..4bc28c64 100755 --- a/test/spec_lint.rb +++ b/test/spec_lint.rb @@ -721,10 +721,10 @@ describe Rack::Lint do end -describe "Rack::Lint::InputWrapper" do +describe "Rack::Lint::Wrapper::InputWrapper" do it "delegate :rewind to underlying IO object" do io = StringIO.new("123") - wrapper = Rack::Lint::InputWrapper.new(io) + wrapper = Rack::Lint::Wrapper::InputWrapper.new(io) wrapper.read.must_equal "123" wrapper.read.must_equal "" wrapper.rewind |