1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/test/support/connection.rb

29 lines
821 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require "active_support/logger"
require "models/college"
require "models/course"
require "models/professor"
require "models/other_dog"
module ARTest
def self.connection_name
ENV["ARCONN"] || config["default_connection"]
end
def self.connection_config
2017-02-27 09:22:56 -05:00
config.fetch("connections").fetch(connection_name) do
puts "Connection #{connection_name.inspect} not found. Available connections: #{config['connections'].keys.join(', ')}"
exit 1
end
end
def self.connect
2012-03-01 22:10:06 -05:00
puts "Using #{connection_name}"
ActiveRecord::Base.logger = ActiveSupport::Logger.new("debug.log", 0, 100 * 1024 * 1024)
ActiveRecord::Base.configurations = connection_config
ActiveRecord::Base.establish_connection :arunit
ARUnit2Model.establish_connection :arunit2
end
end