mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
64 lines
956 B
Ruby
64 lines
956 B
Ruby
|
require File.dirname(__FILE__) + '/helper'
|
||
|
|
||
|
class FooError < RuntimeError; end
|
||
|
|
||
|
context "Mapped errors" do
|
||
|
|
||
|
before(:each) do
|
||
|
Sinatra.application = nil
|
||
|
Sinatra.application.options.raise_errors = false
|
||
|
end
|
||
|
|
||
|
|
||
|
specify "are rescued and run in context" do
|
||
|
|
||
|
error FooError do
|
||
|
'MAPPED ERROR!'
|
||
|
end
|
||
|
|
||
|
get '/' do
|
||
|
raise FooError.new
|
||
|
end
|
||
|
|
||
|
get_it '/'
|
||
|
|
||
|
should.be.server_error
|
||
|
body.should.equal 'MAPPED ERROR!'
|
||
|
|
||
|
end
|
||
|
|
||
|
specify "renders empty if no each method on result" do
|
||
|
|
||
|
error FooError do
|
||
|
nil
|
||
|
end
|
||
|
|
||
|
get '/' do
|
||
|
raise FooError.new
|
||
|
end
|
||
|
|
||
|
get_it '/'
|
||
|
|
||
|
should.be.server_error
|
||
|
body.should.be.empty
|
||
|
|
||
|
end
|
||
|
|
||
|
specify "doesn't override status if set" do
|
||
|
|
||
|
error FooError do
|
||
|
status(200)
|
||
|
end
|
||
|
|
||
|
get '/' do
|
||
|
raise FooError.new
|
||
|
end
|
||
|
|
||
|
get_it '/'
|
||
|
|
||
|
should.be.ok
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|