module ActiveSupport::Testing::SetupAndTeardown::ForMiniTest

Public Instance Methods

after_teardown() click to toggle source
Calls superclass method
# File lib/minitest/old_activesupport_fix.rb, line 17
def after_teardown
  run_callbacks :teardown
  super
end
before_setup() click to toggle source
Calls superclass method
# File lib/minitest/old_activesupport_fix.rb, line 12
def before_setup
  super
  run_callbacks :setup
end