diff options
| author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-07-03 21:02:46 -0300 | 
|---|---|---|
| committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-07-03 21:02:49 -0300 | 
| commit | f3353895a04dfd9a06cf1ca2e7bbfb80a38dbfad (patch) | |
| tree | c28d02f36a000217019f3fe72c5018873caffb3b | |
| parent | b7a4fe18f2cee1385e7dcd36016fb6a15b93aef6 (diff) | |
| download | rails-f3353895a04dfd9a06cf1ca2e7bbfb80a38dbfad.tar.gz rails-f3353895a04dfd9a06cf1ca2e7bbfb80a38dbfad.tar.bz2 rails-f3353895a04dfd9a06cf1ca2e7bbfb80a38dbfad.zip | |
Kill not used constant since removal of runner method
Runner method was removed in ada571bfcdbad669ae43a4dd18277ef227680a0b.
| -rw-r--r-- | activesupport/lib/active_support/testing/setup_and_teardown.rb | 9 | 
1 files changed, 0 insertions, 9 deletions
| diff --git a/activesupport/lib/active_support/testing/setup_and_teardown.rb b/activesupport/lib/active_support/testing/setup_and_teardown.rb index ddb7396aa9..a65148cf1f 100644 --- a/activesupport/lib/active_support/testing/setup_and_teardown.rb +++ b/activesupport/lib/active_support/testing/setup_and_teardown.rb @@ -4,20 +4,11 @@ require 'active_support/callbacks'  module ActiveSupport    module Testing      module SetupAndTeardown - -      PASSTHROUGH_EXCEPTIONS = [ -        NoMemoryError, -        SignalException, -        Interrupt, -        SystemExit -      ] -        extend ActiveSupport::Concern        included do          include ActiveSupport::Callbacks          define_callbacks :setup, :teardown -        end        module ClassMethods | 
