2015-07-08 12:16:37 -04:00
|
|
|
# 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
|
2015-07-10 00:27:23 -04:00
|
|
|
if Rails.env.production?
|
|
|
|
abort("The Rails environment is running in production mode!")
|
|
|
|
end
|
|
|
|
|
2015-07-08 12:16:37 -04:00
|
|
|
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'
|
2015-07-14 01:22:50 -04:00
|
|
|
require 'support/helpers'
|
2015-07-08 12:16:37 -04:00
|
|
|
|
|
|
|
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
|