1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00
sinatra/compat/custom_error_test.rb

63 lines
1.1 KiB
Ruby
Raw Normal View History

2007-11-29 20:56:18 -05:00
require File.dirname(__FILE__) + '/helper'
context "Custom Errors" do
2007-11-29 20:56:18 -05:00
2007-12-02 18:48:45 -05:00
setup do
Sinatra.application = nil
2007-12-02 18:48:45 -05:00
end
2007-11-29 20:56:18 -05:00
specify "override the default 404" do
2007-11-29 20:56:18 -05:00
get_it '/'
should.be.not_found
body.should.equal '<h1>Not Found</h1>'
error Sinatra::NotFound do
2007-11-29 20:56:18 -05:00
'Custom 404'
end
2007-11-29 20:56:18 -05:00
get_it '/'
should.be.not_found
body.should.equal 'Custom 404'
2007-11-29 20:56:18 -05:00
end
2007-11-29 20:56:18 -05:00
specify "override the default 500" do
Sinatra.application.options.raise_errors = false
2007-11-29 20:56:18 -05:00
get '/' do
raise 'asdf'
end
2007-11-29 20:56:18 -05:00
get_it '/'
status.should.equal 500
body.should.equal '<h1>Internal Server Error</h1>'
error do
2007-11-29 20:56:18 -05:00
'Custom 500 for ' + request.env['sinatra.error'].message
end
2007-11-29 20:56:18 -05:00
get_it '/'
2007-11-29 20:56:18 -05:00
get_it '/'
status.should.equal 500
body.should.equal 'Custom 500 for asdf'
Sinatra.application.options.raise_errors = true
2007-11-29 20:56:18 -05:00
end
class UnmappedError < RuntimeError; end
specify "should bring unmapped error back to the top" do
get '/' do
raise UnmappedError, 'test'
end
assert_raises(UnmappedError) do
get_it '/'
end
end
2007-11-29 20:56:18 -05:00
end