Methods
T
Instance Public methods
test_optimized_first_compile()
# File activesupport/test/callbacks_test.rb, line 155
def test_optimized_first_compile
  around = OneTimeCompile.new
  around.save
  assert_equal [
    [:before_save, :starts_true, :if],
    [:before_save, :starts_true, :unless]
  ], around.history
end