Methods
S
T
Instance Public methods
setup()
# File activesupport/test/callback_inheritance_test.rb, line 148
def setup
  @update1 = Child.new("update", :open).dispatch
  @update2 = Child.new("update", :closed).dispatch
end
test_crazy_mix_off()
# File activesupport/test/callback_inheritance_test.rb, line 157
def test_crazy_mix_off
  assert_equal %w(before1 before2 update after2 after1), @update2.log
end
test_crazy_mix_on()
# File activesupport/test/callback_inheritance_test.rb, line 153
def test_crazy_mix_on
  assert_equal %w(before1 update after2 after1), @update1.log
end