rack.git  about / heads / tags
a modular Ruby webserver interface
blob 1037c9fa369b716d951f32581d34182e8504fc2e 589 bytes (raw)
$ git show no-unicorn: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
 
# frozen_string_literal: true

require 'minitest/global_expectations/autorun'
require 'rack/lint'
require 'rack/mock'
require 'rack/null_logger'

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