Methods
Instance Public methods
setup(*args, &block)
Add a callback, which runs before TestCase#setup
.
📝 Source code
# File activesupport/lib/active_support/testing/setup_and_teardown.rb, line 29
def setup(*args, &block)
set_callback(:setup, :before, *args, &block)
end
🔎 See on GitHub
teardown(*args, &block)
Add a callback, which runs after TestCase#teardown
.
📝 Source code
# File activesupport/lib/active_support/testing/setup_and_teardown.rb, line 34
def teardown(*args, &block)
set_callback(:teardown, :after, *args, &block)
end
🔎 See on GitHub