Sha256: 5ada0f7fb764f863ea88fb82c97beb8151fb740034c468cda8caef9fdf96b4c7
Contents?: true
Size: 627 Bytes
Versions: 10
Compression:
Stored size: 627 Bytes
Contents
$: << File.join(File.dirname(__FILE__), "/../lib" ) ENV['RAILS_ENV'] = 'test' ENV['RAILS_ROOT'] = 'app_root' # Load the Rails environment and testing framework require "#{File.dirname(__FILE__)}/../app_root/config/environment" require 'rspec/rails' # Load dependencies require 'rspec_candy/all' # Require support code Dir["../shared/support/**/*.rb"].each {|f| require f} # Run the migrations print "\033[30m" # dark gray text ActiveRecord::Migrator.migrate("#{Rails.root}/db/migrate") print "\033[0m" RSpec.configure do |config| config.use_transactional_fixtures = true config.use_instantiated_fixtures = false end
Version data entries
10 entries across 10 versions & 1 rubygems