Methods
S
T
Instance Public methods
setup()
# File activesupport/test/callbacks_test.rb, line 778
def setup
  ActiveSupport::Callbacks.halt_and_display_warning_on_return_false = true
end
test_returning_false_does_not_halt_callback_if_config_variable_is_true()
# File activesupport/test/callbacks_test.rb, line 782
def test_returning_false_does_not_halt_callback_if_config_variable_is_true
  obj = CallbackFalseTerminator.new
  obj.save
  assert_equal nil, obj.halted
  assert obj.saved
end