This file contains hidden or 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
module ForkedSpecs | |
def forked_specs(*specs) | |
ActiveRecord::Base.clear_all_connections! | |
pids = [] | |
specs.each do |spec| | |
pids << fork do | |
ActiveRecord::Base.establish_connection | |
spec.call | |
end |