Methods
S
T
Instance Public methods
setup()
# File activesupport/test/callback_inheritance_test.rb, line 109
def setup
  @index    = GrandParent.new("index").dispatch
  @update   = GrandParent.new("update").dispatch
  @delete   = GrandParent.new("delete").dispatch
  @unknown  = GrandParent.new("unknown").dispatch
end
test_basic_per_key1()
# File activesupport/test/callback_inheritance_test.rb, line 116
def test_basic_per_key1
  assert_equal %w(before1 before2 index), @index.log
end
test_basic_per_key2()
# File activesupport/test/callback_inheritance_test.rb, line 120
def test_basic_per_key2
  assert_equal %w(before1 before2 update after2 after1), @update.log
end
test_basic_per_key3()
# File activesupport/test/callback_inheritance_test.rb, line 124
def test_basic_per_key3
  assert_equal %w(delete after2 after1), @delete.log
end