Source: show | on GitHub
# File activesupport/lib/active_support/testing/setup_and_teardown.rb, line 21 def setup(*args, &block) set_callback(:setup, :before, *args, &block) end
# File activesupport/lib/active_support/testing/setup_and_teardown.rb, line 25 def teardown(*args, &block) set_callback(:teardown, :after, *args, &block) end