跳至内容 跳至搜索
方法
S
T

实例公共方法

setup(*args, &block)

添加一个回调,它在 TestCase#setup 之前运行。

# 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 之后运行。

# File activesupport/lib/active_support/testing/setup_and_teardown.rb, line 34
def teardown(*args, &block)
  set_callback(:teardown, :after, *args, &block)
end