thoughtbot--shoulda-matchers/spec/spec_helper.rb

33 lines
1.1 KiB
Ruby
Raw Normal View History

# Create Rails environment based on the version given from Appraisal
TESTAPP_ROOT = File.join(File.dirname(__FILE__), '..', 'tmp', 'aruba', '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 'rspec'
2012-03-24 00:00:09 +00:00
require 'bourne'
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) }
2010-12-15 22:34:19 +00:00
require 'shoulda-matchers'
require 'rspec/rails'
# Run the migrations
ActiveRecord::Migration.verbose = false
ActiveRecord::Migrator.migrate("#{Rails.root}/db/migrate")
RSpec.configure do |config|
config.mock_with :mocha
2010-12-15 22:34:19 +00:00
config.include Shoulda::Matchers::ActionController,
:example_group => { :file_path => /action_controller/ }
2010-12-15 22:34:19 +00:00
config.include Shoulda::Matchers::ActionMailer,
:example_group => { :file_path => /action_mailer/ }
end