Methods
T
Instance Public methods
test_returning_false_does_not_halt_callback_if_config_variable_is_not_set()
# File activesupport/test/callbacks_test.rb, line 769
def test_returning_false_does_not_halt_callback_if_config_variable_is_not_set
  obj = CallbackFalseTerminator.new
  obj.save
  assert_equal nil, obj.halted
  assert obj.saved
end