Forked from charleseff/after_commit_with_transactional_fixtures.rb
Last active
August 4, 2016 03:30
-
-
Save cmaitchison/5168104 to your computer and use it in GitHub Desktop.
testing after_commit hooks with transactional fixtures in Rails 4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'active_record/connection_adapters/abstract/transaction' | |
module ActiveRecord | |
module ConnectionAdapters | |
class SavepointTransaction < OpenTransaction | |
def perform_commit_with_transactional_fixtures | |
commit_records if number == 1 | |
perform_commit_without_transactional_fixtures | |
end | |
alias_method_chain :perform_commit, :transactional_fixtures | |
end | |
end | |
end |
It's not working for Rails 4.2...
@ProGM, you can try this https://github.com/grosser/test_after_commit gem
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tx for this fork. found while upgrading 3.1.2 app to Rails4