Sha256: cad2d0d7a7d353be159b7de892e909187fa6a63ae4bfe6bdc471472769c5647f

Contents?: true

Size: 1 KB

Versions: 33

Compression:

Stored size: 1 KB

Contents

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

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

require 'rspec/rails'
require 'rspec/autorun'

# 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"

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

  config.use_transactional_fixtures = true   # Make this false to once again use DatabaseCleaner
  config.infer_base_class_for_anonymous_controllers = false
  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

Version data entries

33 entries across 33 versions & 2 rubygems

Version Path
effective_logging-1.5.9 spec/spec_helper.rb
effective_logging-1.5.8 spec/spec_helper.rb
effective_logging-1.5.7 spec/spec_helper.rb
effective_logging-1.5.6 spec/spec_helper.rb
effective_logging-1.5.5 spec/spec_helper.rb
effective_logging-1.5.4 spec/spec_helper.rb
effective_obfuscation-1.2.0 spec/spec_helper.rb
effective_logging-1.5.3 spec/spec_helper.rb
effective_logging-1.5.2 spec/spec_helper.rb
effective_logging-1.5.1 spec/spec_helper.rb
effective_logging-1.5.0 spec/spec_helper.rb
effective_logging-1.4.1 spec/spec_helper.rb
effective_logging-1.4.0 spec/spec_helper.rb
effective_logging-1.3.1 spec/spec_helper.rb
effective_obfuscation-1.1.2 spec/spec_helper.rb
effective_logging-1.3.0 spec/spec_helper.rb
effective_logging-1.2.6 spec/spec_helper.rb
effective_obfuscation-1.1.1 spec/spec_helper.rb
effective_logging-1.2.5 spec/spec_helper.rb
effective_obfuscation-1.1.0 spec/spec_helper.rb