Sha256: 36a865c90023e6eb614ea81ad749584caf55ab90341b1a1f0883706f3444587e
Contents?: true
Size: 907 Bytes
Versions: 2
Compression:
Stored size: 907 Bytes
Contents
# Create Rails environment based on the version given from Appraisal TESTAPP_ROOT = File.join(File.dirname(__FILE__), '..', 'tmp', 'testapp') FileUtils.rm_rf(TESTAPP_ROOT) if File.exists?(TESTAPP_ROOT) `rails new #{TESTAPP_ROOT}` ENV['RAILS_ENV'] = 'test' ENV['BUNDLE_GEMFILE'] ||= TESTAPP_ROOT + '/Gemfile' require "#{TESTAPP_ROOT}/config/environment" require 'shoulda-matchers' require 'rspec/rails' PROJECT_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..')).freeze $LOAD_PATH << File.join(PROJECT_ROOT, 'lib') Dir[File.join(PROJECT_ROOT, 'spec', 'support', '**', '*.rb')].each { |file| require(file) } # Run the migrations ActiveRecord::Migration.verbose = false ActiveRecord::Migrator.migrate(Rails.root.join('db/migrate')) RSpec.configure do |config| config.include Shoulda::Matchers::ActionController, :example_group => { :file_path => /action_controller/ } end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
shoulda-kept-respond-with-content-type-1.0.0 | spec/spec_helper.rb |
shoulda-kept-assign-to-1.0.1 | spec/spec_helper.rb |