aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/connections/native_openbase
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-07-10 19:27:04 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-07-10 19:27:04 +0000
commit41f3b7ab56d1c90454c0c5db6cbf3e8982ac0f34 (patch)
treeb580ea8b2672442652bb9c3c527809da570b03eb /activerecord/test/connections/native_openbase
parent5ad4f1ad94c71bfbb6aacc8a27addc4a0de54506 (diff)
downloadrails-41f3b7ab56d1c90454c0c5db6cbf3e8982ac0f34.tar.gz
rails-41f3b7ab56d1c90454c0c5db6cbf3e8982ac0f34.tar.bz2
rails-41f3b7ab56d1c90454c0c5db6cbf3e8982ac0f34.zip
Test connections use AR::Base.configurations. References #5497.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4602 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/connections/native_openbase')
-rw-r--r--activerecord/test/connections/native_openbase/connection.rb29
1 files changed, 14 insertions, 15 deletions
diff --git a/activerecord/test/connections/native_openbase/connection.rb b/activerecord/test/connections/native_openbase/connection.rb
index 01a2ffe646..deaa73d347 100644
--- a/activerecord/test/connections/native_openbase/connection.rb
+++ b/activerecord/test/connections/native_openbase/connection.rb
@@ -4,19 +4,18 @@ require 'logger'
ActiveRecord::Base.logger = Logger.new("debug.log")
-db1 = 'activerecord_unittest'
-db2 = 'activerecord_unittest2'
+ActiveRecord::Base.configurations = {
+ 'arunit' => {
+ :adapter => 'openbase',
+ :username => 'admin',
+ :database => 'activerecord_unittest',
+ },
+ 'arunit2' => {
+ :adapter => 'openbase',
+ :username => 'admin',
+ :database => 'activerecord_unittest2'
+ }
+}
-ActiveRecord::Base.establish_connection(
- :adapter => "openbase",
- :username => "admin",
- :password => "",
- :database => db1
-)
-
-Course.establish_connection(
- :adapter => "openbase",
- :username => "admin",
- :password => "",
- :database => db2
-)
+ActiveRecord::Base.establish_connection 'arunit'
+Course.establish_connection 'arunit2'