Sha256: a6f5d7bdda03641283700d06a6bde752749e12bb7aa28c50990c8a9727cca848

Contents?: true

Size: 1.1 KB

Versions: 4

Compression:

Stored size: 1.1 KB

Contents

$LOAD_PATH.unshift(File.dirname(__FILE__))

# Configure Rails Environment
ENV["RAILS_ENV"] = "test"

require File.expand_path("../dummy/config/environment.rb", __FILE__)
require "rspec/rails"
require 'capybara/rspec'
require 'capybara/rails'

begin
  require 'pry'
  silence_warnings{ IRB = Pry }
rescue LoadError
end

ActionMailer::Base.delivery_method = :test
ActionMailer::Base.perform_deliveries = true
ActionMailer::Base.default_url_options[:host] = "test.com"

Rails.backtrace_cleaner.remove_silencers!

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


RSpec.configure do |config|

  config.include RSpec::Integration::CapybaraSessions, :type => :request

  config.before(:all) do
    # Ensure that each test starts with a clean connection
    # Necessary as some tests will leak things like current_schema into the next test
    ActiveRecord::Base.clear_all_connections!
  end

  config.after(:each) do
    Apartment.reset
  end

end

# Load shared examples, must happen after configure for RSpec 3
Dir["#{File.dirname(__FILE__)}/examples/**/*.rb"].each { |f| require f }

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
apartment-0.22.1 spec/spec_helper.rb
apartment-0.22.0 spec/spec_helper.rb
apartment-0.21.1 spec/spec_helper.rb
apartment-0.21.0 spec/spec_helper.rb