2016-02-25 10:17:01 +11:00
|
|
|
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'
|
2016-02-29 07:22:56 +11:00
|
|
|
require 'webmock/rspec'
|
2016-09-06 01:46:36 +10:00
|
|
|
require 'paperclip/matchers'
|
2016-02-25 10:17:01 +11:00
|
|
|
|
|
|
|
ActiveRecord::Migration.maintain_test_schema!
|
2016-10-15 22:48:38 +11:00
|
|
|
WebMock.disable_net_connect!(allow: 'localhost:7575')
|
2016-03-26 23:42:10 +11:00
|
|
|
Sidekiq::Testing.inline!
|
2016-02-25 10:17:01 +11:00
|
|
|
|
|
|
|
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!
|
2016-03-07 03:52:23 +11:00
|
|
|
|
2016-08-18 01:56:23 +10:00
|
|
|
config.include Devise::Test::ControllerHelpers, type: :controller
|
2016-03-07 03:52:23 +11:00
|
|
|
config.include Devise::TestHelpers, type: :view
|
2016-09-06 01:46:36 +10:00
|
|
|
config.include Paperclip::Shoulda::Matchers
|
2016-02-25 10:17:01 +11:00
|
|
|
end
|
2016-03-20 23:03:06 +11:00
|
|
|
|
2016-03-26 23:42:10 +11:00
|
|
|
RSpec::Sidekiq.configure do |config|
|
|
|
|
config.warn_when_jobs_not_processed_by_sidekiq = false
|
|
|
|
end
|
|
|
|
|
2016-03-20 23:03:06 +11:00
|
|
|
def request_fixture(name)
|
|
|
|
File.read(File.join(Rails.root, 'spec', 'fixtures', 'requests', name))
|
|
|
|
end
|
2016-10-09 23:48:43 +11:00
|
|
|
|
|
|
|
def attachment_fixture(name)
|
|
|
|
File.open(File.join(Rails.root, 'spec', 'fixtures', 'files', name))
|
|
|
|
end
|