class CallbacksTest::ConditionalPerson

Public Instance Methods

no() click to toggle source
# File activesupport/test/callbacks_test.rb, line 209
def no; false; end
other_no() click to toggle source
# File activesupport/test/callbacks_test.rb, line 210
def other_no; false; end
other_yes() click to toggle source
# File activesupport/test/callbacks_test.rb, line 208
def other_yes; true; end
save() click to toggle source
# File activesupport/test/callbacks_test.rb, line 212
def save
  run_callbacks :save
end
yes() click to toggle source
# File activesupport/test/callbacks_test.rb, line 207
def yes; true; end