Sha256: e5c1662ae7a6a4dd72a1b6b546fcba45094a85bac9029f602d8dfbdff6f33a20

Contents?: true

Size: 678 Bytes

Versions: 90

Compression:

Stored size: 678 Bytes

Contents

require File.dirname(__FILE__) + '/helper'

context "before filters" do

  setup do
    Sinatra.application = nil
    @app = Sinatra.application
  end

  specify "should be executed in the order defined" do
    invoked = 0x0
    @app.before { invoked = 0x01 }
    @app.before { invoked |= 0x02 }
    @app.get('/') { 'Hello World' }
    get_it '/'
    should.be.ok
    body.should.be == 'Hello World'
    invoked.should.be == 0x03
  end

  specify "should be capable of modifying the request" do
    @app.get('/foo') { 'foo' }
    @app.get('/bar') { 'bar' }
    @app.before { request.path_info = '/bar' }
    get_it '/foo'
    should.be.ok
    body.should.be == 'bar'
  end

end

Version data entries

90 entries across 90 versions & 14 rubygems

Version Path
sinatra-0.3.3 test/filter_test.rb
sinatra-0.3.2 test/filter_test.rb
sinatra-0.9.0.5 compat/filter_test.rb
sinatra-0.9.1 compat/filter_test.rb
sinatra-0.9.0.1 compat/filter_test.rb
sinatra-0.9.0.2 compat/filter_test.rb
sinatra-0.9.1.1 compat/filter_test.rb
sinatra-0.3.0 test/filter_test.rb
sinatra-0.3.1 test/filter_test.rb
sinatra-0.9.2 compat/filter_test.rb