diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-04-04 16:33:31 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-04-04 16:33:31 +0000 |
commit | 949bf2937a7e8808d2329b1e5bd5b8e2017f8181 (patch) | |
tree | 434b2c0448ec3c02ddb3c7bd2cca685c1facbe18 /activerecord/test/connections/native_oracle | |
parent | 4cee09e7a82d94df3cb92808a88f68d055903cf8 (diff) | |
download | rails-949bf2937a7e8808d2329b1e5bd5b8e2017f8181.tar.gz rails-949bf2937a7e8808d2329b1e5bd5b8e2017f8181.tar.bz2 rails-949bf2937a7e8808d2329b1e5bd5b8e2017f8181.zip |
Get the green light for Oracle AR unit tests (closes #4573) [Michael Schoen]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4152 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/connections/native_oracle')
-rw-r--r-- | activerecord/test/connections/native_oracle/connection.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/connections/native_oracle/connection.rb b/activerecord/test/connections/native_oracle/connection.rb index 095fe9d5ee..b0d9696a70 100644 --- a/activerecord/test/connections/native_oracle/connection.rb +++ b/activerecord/test/connections/native_oracle/connection.rb @@ -6,7 +6,7 @@ ActiveRecord::Base.logger = Logger.new STDOUT ActiveRecord::Base.logger.level = Logger::WARN # Set these to your database connection strings -db = 'activerecord_unit_tests' +db = ENV['ARUNIT_DB'] || 'activerecord_unittest' ActiveRecord::Base.establish_connection( :adapter => 'oracle', |