This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
discourse/config/initializers/rails3_ar_after_commit_tests.rb
2013-02-05 14:16:51 -05:00

23 lines
No EOL
481 B
Ruby

# Allow after commits to work in test mode
if Rails.env.test?
class ActiveRecord::Base
class << self
def after_commit(*args, &block)
opts = args.extract_options! || {}
case opts[:on]
when :create
after_create(*args, &block)
when :update
after_update(*args, &block)
when :destroy
after_destroy(*args, &block)
else
after_save(*args, &block)
end
end
end
end
end