diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2016-05-06 15:05:38 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2016-05-06 15:05:38 -0500 |
commit | de8f3cb483e5821dc02e674c9ef176fc9159da26 (patch) | |
tree | 67ff2b006dea9d0b2ae635bab1952061ea05a75b /actionpack/test | |
parent | 1c5031ee083166816ea49f5f23a63ccb11a834d4 (diff) | |
parent | 6e189a2e3b69d8b5858e789e4524f604bfeaaca4 (diff) | |
download | rails-de8f3cb483e5821dc02e674c9ef176fc9159da26.tar.gz rails-de8f3cb483e5821dc02e674c9ef176fc9159da26.tar.bz2 rails-de8f3cb483e5821dc02e674c9ef176fc9159da26.zip |
Merge pull request #24896 from prathamesh-sonpatki/api-cleanup
BoomerAPI is not used anywhere, so removed it!
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/dispatch/debug_exceptions_test.rb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/actionpack/test/dispatch/debug_exceptions_test.rb b/actionpack/test/dispatch/debug_exceptions_test.rb index 159bf10545..f6e0076a6a 100644 --- a/actionpack/test/dispatch/debug_exceptions_test.rb +++ b/actionpack/test/dispatch/debug_exceptions_test.rb @@ -75,13 +75,6 @@ class DebugExceptionsTest < ActionDispatch::IntegrationTest end end - class BoomerAPI < Boomer - def call(env) - env['action_dispatch.show_detailed_exceptions'] = @detailed - raise "puke!" - end - end - RoutesApp = Struct.new(:routes).new(SharedTestRoutes) ProductionApp = ActionDispatch::DebugExceptions.new(Boomer.new(false), RoutesApp) DevelopmentApp = ActionDispatch::DebugExceptions.new(Boomer.new(true), RoutesApp) |