# This file is copied to spec/ when you run 'rails generate rspec:install' ENV['RAILS_ENV'] ||= 'test' require File.expand_path('../../config/environment', __FILE__) # Prevent database truncation if the environment is production if Rails.env.production? abort("The Rails environment is running in production mode!") end require 'spec_helper' require 'rspec/rails' require 'shoulda/matchers' require 'capybara/rails' require 'capybara/rspec' require 'support/capybara' require 'support/database_cleaner' require 'support/factory_girl' require 'support/helpers' ActiveRecord::Migration.maintain_test_schema! RSpec.configure do |config| config.fixture_path = "#{::Rails.root}/spec/fixtures" config.use_transactional_fixtures = false config.infer_spec_type_from_file_location! end