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

require 'minitest/global_expectations/autorun'
require 'rack/builder'
require 'rack/config'
require 'rack/content_length'
require 'rack/lint'
require 'rack/mock'

describe Rack::Config do
  it "accept a block that modifies the environment" do
    app = Rack::Builder.new do
      use Rack::Lint
      use Rack::Config do |env|
        env['greeting'] = 'hello'
      end
      run lambda { |env|
        [200, { 'Content-Type' => 'text/plain' }, [env['greeting'] || '']]
      }
    end

    response = Rack::MockRequest.new(app).get('/')
    response.body.must_equal 'hello'
  end
end

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