12345678910111213141516171819202122232425262728 |
- ENV['RAILS_ENV'] ||= 'test'
- require File.expand_path('../config/environment', __dir__)
- abort('The Rails environment is running in production mode!') if Rails.env.production?
- require 'spec_helper'
- require 'rspec/rails'
- Rails.root.glob('spec/support/**/*.rb').each { |f| require f }
|