Methods
T
Instance Public methods
test_save_around()
# File activesupport/test/callbacks_test.rb, line 398
def test_save_around
  around = AroundPerson.new
  around.save
  assert_equal [
    "tweedle dee",
    "yup", "yup",
    "tweedle dum pre",
    "w0tyes before",
    "tweedle deedle pre",
    "running",
    "tweedle deedle post",
    "w0tyes after",
    "tweedle dum post",
    "tweedle"
  ], around.history
end