aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/show_exceptions_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* Disable ShowExceptions during integration testsJoshua Peek2010-01-191-11/+11
|
* Make local_request? to returns true when facing ::1 IPv6 address [#3257 ↵Prem Sichanugrist2010-01-171-10/+12
| | | | | | status:resolved] Signed-off-by: José Valim <jose.valim@gmail.com>
* Add ActionDispatch::Notifications middleware.José Valim2010-01-171-23/+0
|
* Ensure no notification is on the queue before running notifications related ↵José Valim2010-01-031-0/+3
| | | | tests.
* Add notifications to ActionDispatch::ShowExceptions, this can be used as ↵José Valim2010-01-031-0/+20
| | | | hooks for plugins like ExceptionNotifier.
* Allow integration test rack app to be set with "@app" ivar instead of using ↵Joshua Peek2009-09-261-4/+4
| | | | open_session
* Ensure changes to I18n locale get reset during testsJoshua Peek2009-09-191-2/+1
|
* Got all the dispatch tests running on new baseCarl Lerche2009-05-261-2/+2
|
* Merge Failsafe middleware into ShowExceptionsJoshua Peek2009-05-171-0/+5
|
* Extract ActionController rescue templates into Rescue and ShowExceptions ↵Joshua Peek2009-05-021-0/+103
middleware. This commit breaks all exception catching plugins like ExceptionNotifier. These plugins should be rewritten as middleware instead overriding Controller#rescue_action_in_public.