Methods
S
T
Instance Public methods
setup()
# File activesupport/test/callback_inheritance_test.rb, line 128
def setup
  @index    = Parent.new("index").dispatch
  @update   = Parent.new("update").dispatch
  @delete   = Parent.new("delete").dispatch
end
test_inherited_excluded()
# File activesupport/test/callback_inheritance_test.rb, line 134
def test_inherited_excluded
  assert_equal %w(before1 index), @index.log
end
test_inherited_not_excluded()
# File activesupport/test/callback_inheritance_test.rb, line 138
def test_inherited_not_excluded
  assert_equal %w(before1 before2 update after1), @update.log
end
test_partially_excluded()
# File activesupport/test/callback_inheritance_test.rb, line 142
def test_partially_excluded
  assert_equal %w(delete after2 after1), @delete.log
end