aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/support/connection.rb
blob: a39794fa3914069dc9d96561763cdaabd3bb08a3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12



                                  







                                                 
                  
                                                                                                          
                                                       
                                                         



                                                    
require 'logger'
require_dependency 'models/course'

module ARTest
  def self.connection_name
    ENV['ARCONN'] || config['default_connection']
  end

  def self.connection_config
    config['connections'][connection_name]
  end

  def self.connect
    puts "Using #{connection_name} with Identity Map #{ActiveRecord::IdentityMap.enabled? ? 'on' : 'off'}"
    ActiveRecord::Base.logger = Logger.new("debug.log")
    ActiveRecord::Base.configurations = connection_config
    ActiveRecord::Base.establish_connection 'arunit'
    Course.establish_connection 'arunit2'
  end
end