Adding a Mention model, test stubs
This commit is contained in:
parent
42eeecba3f
commit
71fe24096c
38 changed files with 355 additions and 47 deletions
16
spec/rails_helper.rb
Normal file
16
spec/rails_helper.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
ENV['RAILS_ENV'] ||= 'test'
|
||||
require File.expand_path('../../config/environment', __FILE__)
|
||||
|
||||
abort("The Rails environment is running in production mode!") if Rails.env.production?
|
||||
|
||||
require 'spec_helper'
|
||||
require 'rspec/rails'
|
||||
|
||||
ActiveRecord::Migration.maintain_test_schema!
|
||||
|
||||
RSpec.configure do |config|
|
||||
config.fixture_path = "#{::Rails.root}/spec/fixtures"
|
||||
config.use_transactional_fixtures = true
|
||||
config.infer_spec_type_from_file_location!
|
||||
config.filter_rails_from_backtrace!
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue