rack.git  about / heads / tags
a modular Ruby webserver interface
blob ce5f777776342aed616135bfe52f1042bcbc9474 671 bytes (raw)
$ git show chunk: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
26
27
 
# frozen_string_literal: true

require_relative 'helper'

separate_testing do
  require_relative '../lib/rack/config'
  require_relative '../lib/rack/lint'
  require_relative '../lib/rack/builder'
  require_relative '../lib/rack/mock_request'
end

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