方法
实例公共方法
setup(*args, &block) 链接
添加一个回调,它在 TestCase#setup
之前运行。
来源: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/testing/setup_and_teardown.rb, line 29 def setup(*args, &block) set_callback(:setup, :before, *args, &block) end
teardown(*args, &block) 链接
添加一个回调,它在 TestCase#teardown
之后运行。
来源: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/testing/setup_and_teardown.rb, line 34 def teardown(*args, &block) set_callback(:teardown, :after, *args, &block) end