45 lines
1.7 KiB
Ruby
45 lines
1.7 KiB
Ruby
# 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'
|
|
# Add additional requires below this line. Rails is not loaded until this point!
|
|
|
|
# require all support files
|
|
Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
|
|
|
|
RSpec.configure do |config|
|
|
# Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
|
|
config.fixture_path = "#{::Rails.root}/spec/fixtures"
|
|
|
|
# If you're not using ActiveRecord, or you'd prefer not to run each of your
|
|
# examples within a transaction, remove the following line or assign false
|
|
# instead of true.
|
|
config.use_transactional_fixtures = true
|
|
|
|
# RSpec Rails can automatically mix in different behaviours to your tests
|
|
# based on their file location, for example enabling you to call `get` and
|
|
# `post` in specs under `spec/controllers`.
|
|
#
|
|
# You can disable this behaviour by removing the line below, and instead
|
|
# explicitly tag your specs with their type, e.g.:
|
|
#
|
|
# RSpec.describe UsersController, :type => :controller do
|
|
# # ...
|
|
# end
|
|
#
|
|
# The different available types are documented in the features, such as in
|
|
# https://relishapp.com/rspec/rspec-rails/docs
|
|
config.infer_spec_type_from_file_location!
|
|
|
|
config.include Devise::TestHelpers, type: :controller
|
|
config.include ControllerHelpers, type: :controller
|
|
config.include Shoulda::Matchers::ActiveModel, type: :model
|
|
config.include Shoulda::Matchers::ActiveRecord, type: :model
|
|
end
|