aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/support/connection.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/support/connection.rb')
-rw-r--r--activerecord/test/support/connection.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/activerecord/test/support/connection.rb b/activerecord/test/support/connection.rb
new file mode 100644
index 0000000000..f4123c694d
--- /dev/null
+++ b/activerecord/test/support/connection.rb
@@ -0,0 +1,13 @@
+require 'logger'
+require_dependency 'models/course'
+
+module ARTest
+ def self.connect
+ connection_name = ENV['ARCONN'] || config['default_connection']
+ puts "Using #{connection_name}"
+ ActiveRecord::Base.logger = Logger.new("debug.log")
+ ActiveRecord::Base.configurations = config['connections'][connection_name]
+ ActiveRecord::Base.establish_connection 'arunit'
+ Course.establish_connection 'arunit2'
+ end
+end