mirror of
https://github.com/aasm/aasm
synced 2023-03-27 23:22:41 -04:00
19 lines
750 B
Ruby
19 lines
750 B
Ruby
$LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__)))
|
|
$LOAD_PATH.unshift(File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib')))
|
|
require 'aasm'
|
|
|
|
require 'rspec'
|
|
require 'rspec/autorun'
|
|
|
|
# require 'ruby-debug'; Debugger.settings[:autoeval] = true; debugger; rubys_debugger = 'annoying'
|
|
# require 'ruby-debug/completion'
|
|
|
|
def load_schema
|
|
config = YAML::load(IO.read(File.dirname(__FILE__) + '/database.yml'))
|
|
ActiveRecord::Base.logger = Logger.new(File.dirname(__FILE__) + "/debug.log")
|
|
ActiveRecord::Base.establish_connection(config['sqlite3'])
|
|
load(File.dirname(__FILE__) + "/schema.rb")
|
|
end
|
|
|
|
# Requiring custom spec helpers
|
|
Dir[File.dirname(__FILE__) + "/spec_helpers/**/*.rb"].sort.each { |f| require File.expand_path(f) }
|