summaryrefslogtreecommitdiff
path: root/test/spec_config.rb
blob: 304ef8bf715a67026821b03f717927b090b5511c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

require_relative 'helper'

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