module ActiveSupport::Testing::SetupAndTeardown

def after_teardown # :nodoc:

:nodoc:
def after_teardown # :nodoc:
  run_callbacks :teardown
  super
end

def before_setup # :nodoc:

:nodoc:
def before_setup # :nodoc:
  super
  run_callbacks :setup
end