mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 05:54:27 +00:00
19 lines
539 B
Ruby
19 lines
539 B
Ruby
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'
|
|
require 'webmock/rspec'
|
|
|
|
ActiveRecord::Migration.maintain_test_schema!
|
|
WebMock.disable_net_connect!
|
|
|
|
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
|