metamaps--metamaps/spec/rails_helper.rb

27 lines
820 B
Ruby
Raw Normal View History

ENV['RAILS_ENV'] ||= 'test'
require 'spec_helper'
require File.expand_path('../../config/environment', __FILE__)
require 'rspec/rails'
2015-12-16 14:33:29 +00:00
# Prevent database truncation if the environment is production
2015-12-16 14:33:29 +00:00
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!
2015-12-17 01:16:02 +00:00
config.include Shoulda::Matchers::ActiveModel, type: :model
config.include Shoulda::Matchers::ActiveRecord, type: :model
end