Sha256: 37db2d7d68e77df070cbd822889c6db34e0a6399d601ab011904948e86d67b1b

Contents?: true

Size: 960 Bytes

Versions: 8

Compression:

Stored size: 960 Bytes

Contents

# 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 '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.join('db/migrate'))

RSpec.configure do |config|
  config.mock_with :mocha
  config.include Shoulda::Matchers::ActionController,
                 :example_group => { :file_path => /action_controller/ }
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
shoulda-matchers-2.4.0 spec/spec_helper.rb
shoulda-matchers-2.4.0.rc1 spec/spec_helper.rb
shoulda-matchers-2.3.0 spec/spec_helper.rb
challah-1.0.0 vendor/bundle/gems/shoulda-matchers-2.2.0/spec/spec_helper.rb
shoulda-matchers-2.2.0 spec/spec_helper.rb
challah-1.0.0.beta3 vendor/bundle/gems/shoulda-matchers-2.1.0/spec/spec_helper.rb
shoulda-matchers-2.1.0 spec/spec_helper.rb
shoulda-matchers-2.0.0 spec/spec_helper.rb