# 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' require 'bourne' 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}/db/migrate") RSpec.configure do |config| config.mock_with :mocha config.include Shoulda::Matchers::ActionController, :example_group => { :file_path => /action_controller/ } config.include Shoulda::Matchers::ActionMailer, :example_group => { :file_path => /action_mailer/ } end