Methods
S
T
Instance Public methods
setup()
# File activesupport/test/callback_inheritance_test.rb, line 108
def setup
  @index    = GrandParent.new("index").dispatch
  @update   = GrandParent.new("update").dispatch
  @delete   = GrandParent.new("delete").dispatch
end
test_basic_conditional_callback1()
# File activesupport/test/callback_inheritance_test.rb, line 114
def test_basic_conditional_callback1
  assert_equal %w(before1 before2 index), @index.log
end
test_basic_conditional_callback2()
# File activesupport/test/callback_inheritance_test.rb, line 118
def test_basic_conditional_callback2
  assert_equal %w(before1 before2 update after2 after1), @update.log
end
test_basic_conditional_callback3()
# File activesupport/test/callback_inheritance_test.rb, line 122
def test_basic_conditional_callback3
  assert_equal %w(delete after2 after1), @delete.log
end