27 lines
850 B
Ruby
27 lines
850 B
Ruby
# frozen_string_literal: true
|
|
ENV['RAILS_ENV'] ||= 'test'
|
|
require 'spec_helper'
|
|
require File.expand_path('../../config/environment', __FILE__)
|
|
require 'rspec/rails'
|
|
|
|
# Prevent database truncation if the environment is production
|
|
if Rails.env.production?
|
|
abort('The Rails environment is running in production mode!')
|
|
end
|
|
|
|
# require all support files
|
|
Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
|
|
|
|
ActiveRecord::Migration.maintain_test_schema!
|
|
|
|
RSpec.configure do |config|
|
|
# Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
|
|
config.fixture_path = "#{::Rails.root}/spec/fixtures"
|
|
|
|
config.use_transactional_fixtures = true
|
|
|
|
config.infer_spec_type_from_file_location!
|
|
|
|
config.include Shoulda::Matchers::ActiveModel, type: :model
|
|
config.include Shoulda::Matchers::ActiveRecord, type: :model
|
|
end
|