module ActiveSupport::ExecutionContext::TestHelper

def after_teardown

def after_teardown
  super
  ActiveSupport::ExecutionContext.clear
end

def before_setup

:nodoc:
def before_setup
  ActiveSupport::ExecutionContext.clear
  super
end