aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/support/connection.rb
blob: 2d288542be30a08090095d535429835c363b117c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'active_support/logger'
require 'models/college'
require '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}"
    file = File.open('debug.log', 'w')
    ActiveRecord::Model.logger = ActiveSupport::Logger.new(file)
    ActiveRecord::Model.configurations = connection_config
    ActiveRecord::Model.establish_connection 'arunit'
    ARUnit2Model.establish_connection 'arunit2'
  end
end