aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/support/connection.rb
blob: fcd2e4dee5cf70734fb20648855206407317605f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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}"
    ActiveRecord::Base.logger = Logger.new("debug.log")
    ActiveRecord::Base.configurations = connection_config
    ActiveRecord::Base.establish_connection 'arunit'
    Course.establish_connection 'arunit2'
  end
end