aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/connections/native_postgresql/connection.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/connections/native_postgresql/connection.rb')
-rw-r--r--activerecord/test/connections/native_postgresql/connection.rb33
1 files changed, 16 insertions, 17 deletions
diff --git a/activerecord/test/connections/native_postgresql/connection.rb b/activerecord/test/connections/native_postgresql/connection.rb
index 1bdff730b1..a75fc6e2ae 100644
--- a/activerecord/test/connections/native_postgresql/connection.rb
+++ b/activerecord/test/connections/native_postgresql/connection.rb
@@ -4,21 +4,20 @@ require 'logger'
ActiveRecord::Base.logger = Logger.new("debug.log")
-db1 = 'activerecord_unittest'
-db2 = 'activerecord_unittest2'
+ActiveRecord::Base.configurations = {
+ 'arunit' => {
+ :adapter => 'postgresql',
+ :username => 'postgres',
+ :database => 'activerecord_unittest',
+ :min_messages => 'warning'
+ },
+ 'arunit2' => {
+ :adapter => 'postgresql',
+ :username => 'postgres',
+ :database => 'activerecord_unittest2',
+ :min_messages => 'warning'
+ }
+}
-ActiveRecord::Base.establish_connection(
- :adapter => "postgresql",
- :username => "postgres",
- :password => "postgres",
- :database => db1,
- :min_messages => "warning"
-)
-
-Course.establish_connection(
- :adapter => "postgresql",
- :username => "postgres",
- :password => "postgres",
- :database => db2,
- :min_messages => "warning"
-)
+ActiveRecord::Base.establish_connection 'arunit'
+Course.establish_connection 'arunit2'