123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- ENV["RAILS_ENV"] ||= 'test'
- require 'spec_helper'
- require File.expand_path("../../config/environment", __FILE__)
- require 'rspec/rails'
- ActiveRecord::Migration.check_pending!
- RSpec.configure do |config|
-
- config.fixture_path = "#{::Rails.root}/spec/fixtures"
-
-
-
- config.use_transactional_fixtures = true
-
-
-
-
-
-
-
-
-
-
-
-
-
- config.infer_spec_type_from_file_location!
- end
|