mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
35 lines
813 B
Ruby
35 lines
813 B
Ruby
require 'logger'
|
|
|
|
$:.unshift(File.dirname(__FILE__) + '/../../../activerecord/lib')
|
|
require 'active_record'
|
|
|
|
module ActiveModel
|
|
module TestsDatabase
|
|
mattr_accessor :connected
|
|
|
|
def self.included(base)
|
|
unless self.connected
|
|
setup_connection
|
|
setup_schema
|
|
end
|
|
|
|
base.send :include, ActiveRecord::TestFixtures
|
|
end
|
|
|
|
def self.setup_schema
|
|
original, $stdout = $stdout, StringIO.new
|
|
load(SCHEMA_FILE)
|
|
ensure
|
|
$stdout = original
|
|
self.connected = true
|
|
end
|
|
|
|
def self.setup_connection
|
|
defaults = { :database => ':memory:' }
|
|
|
|
adapter = defined?(JRUBY_VERSION) ? 'jdbcsqlite3' : 'sqlite3'
|
|
options = defaults.merge :adapter => adapter, :timeout => 500
|
|
ActiveRecord::Base.establish_connection(options)
|
|
end
|
|
end
|
|
end
|