Sha256: f2b2970a176ba65aac7db6a1b22b2c28ab647a29bf0ddd56fe6a68f3c189c22d

Contents?: true

Size: 1.27 KB

Versions: 28

Compression:

Stored size: 1.27 KB

Contents

ENV["RAILS_ENV"] ||= 'test'

require File.expand_path("../dummy/config/environment", __FILE__)

require 'rspec/rails'
require 'factory_girl_rails'
require 'pry'

# Requires supporting ruby files with custom matchers and macros, etc,
# in spec/support/ and its subdirectories.
Dir[Rails.root.join("../../spec/support/**/*.rb")].each {|f| require f }

RSpec.configure do |config|
  config.fixture_path = "#{::Rails.root}/spec/fixtures"

  config.include Devise::TestHelpers, :type => :controller

  Rails.logger.level = 4    # Output only minimal stuff to test.log

  config.expect_with(:rspec) { |c| c.syntax = :should }

  config.use_transactional_fixtures = true   # Make this false to once again use DatabaseCleaner
  config.order = 'random'
end

class ActiveRecord::Base
  mattr_accessor :shared_connection
  @@shared_connection = nil

  def self.connection
    @@shared_connection || retrieve_connection
  end
end

# Forces all threads to share the same connection. This works on
# Capybara because it starts the web server in a thread.
ActiveRecord::Base.shared_connection = ActiveRecord::Base.connection


# To set up this gem for testing:
# spec/dummy> ln -s ../../spec spec
#
# spec/dummy> rails generate effective_qb_sync:install
# spec/dummy> rake db:migrate
# spec/dummy> rake db:test:prepare

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
effective_qb_sync-1.5.0 spec/spec_helper.rb
effective_qb_sync-1.4.0 spec/spec_helper.rb
effective_qb_sync-1.3.8 spec/spec_helper.rb
effective_qb_sync-1.3.7 spec/spec_helper.rb
effective_qb_sync-1.3.6 spec/spec_helper.rb
effective_qb_sync-1.3.5 spec/spec_helper.rb
effective_qb_sync-1.3.4 spec/spec_helper.rb
effective_qb_sync-1.3.3 spec/spec_helper.rb
effective_qb_sync-1.3.2 spec/spec_helper.rb
effective_qb_sync-1.3.1 spec/spec_helper.rb
effective_qb_sync-1.3.0 spec/spec_helper.rb
effective_qb_sync-1.2.5 spec/spec_helper.rb
effective_qb_sync-1.2.4 spec/spec_helper.rb
effective_qb_sync-1.2.3 spec/spec_helper.rb
effective_qb_sync-1.2.2 spec/spec_helper.rb
effective_qb_sync-1.2.1 spec/spec_helper.rb
effective_qb_sync-1.2.0 spec/spec_helper.rb
effective_qb_sync-1.1.5 spec/spec_helper.rb
effective_qb_sync-1.1.4 spec/spec_helper.rb
effective_qb_sync-1.1.3 spec/spec_helper.rb