Sha256: 43976620ed588d2c2ca75945169f265165d7251610f55c61b81d89a0bf187633

Contents?: true

Size: 997 Bytes

Versions: 8

Compression:

Stored size: 997 Bytes

Contents

$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))
require 'rubygems'
require 'bundler/setup'
require 'rspec/its'
require 'rspec/collection_matchers'
require 'webmock/rspec'

require 'activerecord-turntable'

require 'coveralls'
Coveralls.wear!

MIGRATIONS_ROOT = File.expand_path(File.join(File.dirname(__FILE__), 'migrations'))

# Requires supporting files with custom matchers and macros, etc,
# in ./support/ and its subdirectories.
ActiveRecord::Base.configurations = YAML.load_file(File.join(File.dirname(__FILE__), 'config/database.yml'))
ActiveRecord::Base.establish_connection(:test)

Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}

RSpec.configure do |config|
  include TurntableHelper

  config.filter_run focus: true
  config.run_all_when_everything_filtered = true

  config.before(:each) do
    Dir[File.join(File.dirname(File.dirname(__FILE__)), 'spec/models/*.rb')].each { |f| require f }
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
activerecord-turntable-2.0.6 spec/spec_helper.rb
activerecord-turntable-2.0.5 spec/spec_helper.rb
activerecord-turntable-2.0.4 spec/spec_helper.rb
activerecord-turntable-2.0.3 spec/spec_helper.rb
activerecord-turntable-2.0.2 spec/spec_helper.rb
activerecord-turntable-2.0.1 spec/spec_helper.rb
activerecord-turntable-2.0.0 spec/spec_helper.rb
activerecord-turntable-2.0.0.rc1 spec/spec_helper.rb