Diffstat (limited to 'vendor/rails/activerecord/test/connections/native_oracle/connection.rb') (more/less context) (ignore whitespace changes)
| -rw-r--r-- | vendor/rails/activerecord/test/connections/native_oracle/connection.rb | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/vendor/rails/activerecord/test/connections/native_oracle/connection.rb b/vendor/rails/activerecord/test/connections/native_oracle/connection.rb deleted file mode 100644 index e127e36..0000000 --- a/vendor/rails/activerecord/test/connections/native_oracle/connection.rb +++ b/dev/null @@ -1,27 +0,0 @@ -print "Using Oracle\n" -require_dependency 'fixtures/course' -require 'logger' - -ActiveRecord::Base.logger = Logger.new STDOUT -ActiveRecord::Base.logger.level = Logger::WARN - -# Set these to your database connection strings -db = ENV['ARUNIT_DB'] || 'activerecord_unittest' - -ActiveRecord::Base.configurations = { - 'arunit' => { - :adapter => 'oracle', - :username => 'arunit', - :password => 'arunit', - :database => db, - }, - 'arunit2' => { - :adapter => 'oracle', - :username => 'arunit2', - :password => 'arunit2', - :database => db - } -} - -ActiveRecord::Base.establish_connection 'arunit' -Course.establish_connection 'arunit2' |
