mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
19 lines
516 B
Ruby
19 lines
516 B
Ruby
|
print "Using HSQLDB via JRuby, activerecord-jdbc-adapter and activerecord-jdbchsqldb-adapter\n"
|
||
|
require_dependency 'models/course'
|
||
|
require 'logger'
|
||
|
ActiveRecord::Base.logger = Logger.new("debug.log")
|
||
|
|
||
|
ActiveRecord::Base.configurations = {
|
||
|
'arunit' => {
|
||
|
:adapter => 'jdbchsqldb',
|
||
|
:database => 'activerecord_unittest'
|
||
|
},
|
||
|
'arunit2' => {
|
||
|
:adapter => 'jdbchsqldb',
|
||
|
:database => 'activerecord_unittest2'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ActiveRecord::Base.establish_connection 'arunit'
|
||
|
Course.establish_connection 'arunit2'
|