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

Version Path
rspec_candy-0.3.1 spec/rspec2/spec/spec_helper.rb
rspec_candy-0.3.0 spec/rspec2/spec/spec_helper.rb
rspec_candy-0.2.10 spec/rspec2/spec/spec_helper.rb
rspec_candy-0.2.9 spec/rspec2/spec/spec_helper.rb
rspec_candy-0.2.8 spec/rspec2/spec/spec_helper.rb
rspec_candy-0.2.7 spec/rspec2/spec/spec_helper.rb
rspec_candy-0.2.6 spec/rspec2/spec/spec_helper.rb
rspec_candy-0.2.5 spec/rspec2/spec/spec_helper.rb
rspec_candy-0.2.4 spec/rspec2/spec/spec_helper.rb
rspec_candy-0.2.3 spec/rspec2/spec/spec_helper.rb