mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
3f743b01ff
This method in test has a confusing name that also is the same as a method with a different behavior on `ActiveRecord::Base` so we're just renaming it to avoid confusion between the two! Co-authored-by: eileencodes <eileencodes@gmail.com>
29 lines
967 B
Ruby
29 lines
967 B
Ruby
# 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.test_configuration_hashes
|
|
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
|
|
puts "Using #{connection_name}"
|
|
ActiveRecord::Base.logger = ActiveSupport::Logger.new("debug.log", 0, 100 * 1024 * 1024)
|
|
ActiveRecord::Base.connection_handlers = { ActiveRecord::Base.writing_role => ActiveRecord::Base.default_connection_handler }
|
|
ActiveRecord::Base.configurations = test_configuration_hashes
|
|
ActiveRecord::Base.establish_connection :arunit
|
|
ARUnit2Model.establish_connection :arunit2
|
|
end
|
|
end
|