jam-cloud/web/spec/support/shared_db_connection.rb

14 lines
440 B
Ruby

if defined?(TEST_CONNECT_STATES) && TEST_CONNECT_STATES
class ActiveRecord::Base
mattr_accessor :shared_connection
@@shared_connection = nil
def self.connection
@@shared_connection || retrieve_connection
end
end
# Forces all threads to share the same connection. This works on
# Capybara because it starts the web server in a thread.
ActiveRecord::Base.shared_connection = ActiveRecord::Base.connection
end