From 41f3b7ab56d1c90454c0c5db6cbf3e8982ac0f34 Mon Sep 17 00:00:00 2001 From: Jeremy Kemper Date: Mon, 10 Jul 2006 19:27:04 +0000 Subject: Test connections use AR::Base.configurations. References #5497. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4602 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- .../test/connections/native_oracle/connection.rb | 28 ++++++++++++---------- 1 file changed, 16 insertions(+), 12 deletions(-) (limited to 'activerecord/test/connections/native_oracle') diff --git a/activerecord/test/connections/native_oracle/connection.rb b/activerecord/test/connections/native_oracle/connection.rb index b0d9696a70..e127e36675 100644 --- a/activerecord/test/connections/native_oracle/connection.rb +++ b/activerecord/test/connections/native_oracle/connection.rb @@ -8,16 +8,20 @@ ActiveRecord::Base.logger.level = Logger::WARN # Set these to your database connection strings db = ENV['ARUNIT_DB'] || 'activerecord_unittest' -ActiveRecord::Base.establish_connection( - :adapter => 'oracle', - :username => 'arunit', - :password => 'arunit', - :database => db -) +ActiveRecord::Base.configurations = { + 'arunit' => { + :adapter => 'oracle', + :username => 'arunit', + :password => 'arunit', + :database => db, + }, + 'arunit2' => { + :adapter => 'oracle', + :username => 'arunit2', + :password => 'arunit2', + :database => db + } +} -Course.establish_connection( - :adapter => 'oracle', - :username => 'arunit2', - :password => 'arunit2', - :database => db -) +ActiveRecord::Base.establish_connection 'arunit' +Course.establish_connection 'arunit2' -- cgit v1.2.3