rack.git  about / heads / tags
a modular Ruby webserver interface
blob 65ddb279e2b306f821ac0e553b36fb871fc5bb21 655 bytes (raw)
$ git show chunk:test/spec_null_logger.rb	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 
# frozen_string_literal: true

require_relative 'helper'

separate_testing do
  require_relative '../lib/rack/null_logger'
  require_relative '../lib/rack/lint'
  require_relative '../lib/rack/mock_request'
end

describe Rack::NullLogger do
  it "act as a noop logger" do
    app = lambda { |env|
      env['rack.logger'].warn "b00m"
      [200, { 'content-type' => 'text/plain' }, ["Hello, World!"]]
    }

    logger = Rack::Lint.new(Rack::NullLogger.new(app))

    res = logger.call(Rack::MockRequest.env_for)
    res[0..1].must_equal [
      200, { 'content-type' => 'text/plain' }
    ]
    res[2].to_enum.to_a.must_equal ["Hello, World!"]
  end
end

git clone https://yhbt.net/rack.git