The code powering m.abunchtell.com https://m.abunchtell.com
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

40 Zeilen
1.2 KiB

  1. ENV['RAILS_ENV'] ||= 'test'
  2. require File.expand_path('../../config/environment', __FILE__)
  3. abort("The Rails environment is running in production mode!") if Rails.env.production?
  4. require 'spec_helper'
  5. require 'rspec/rails'
  6. require 'webmock/rspec'
  7. require 'paperclip/matchers'
  8. Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
  9. ActiveRecord::Migration.maintain_test_schema!
  10. WebMock.disable_net_connect!(allow: 'localhost:7575')
  11. Sidekiq::Testing.inline!
  12. RSpec.configure do |config|
  13. config.fixture_path = "#{::Rails.root}/spec/fixtures"
  14. config.use_transactional_fixtures = true
  15. config.order = 'random'
  16. config.infer_spec_type_from_file_location!
  17. config.filter_rails_from_backtrace!
  18. config.include Devise::Test::ControllerHelpers, type: :controller
  19. config.include Devise::TestHelpers, type: :view
  20. config.include Paperclip::Shoulda::Matchers
  21. end
  22. RSpec::Sidekiq.configure do |config|
  23. config.warn_when_jobs_not_processed_by_sidekiq = false
  24. end
  25. def request_fixture(name)
  26. File.read(File.join(Rails.root, 'spec', 'fixtures', 'requests', name))
  27. end
  28. def attachment_fixture(name)
  29. File.open(File.join(Rails.root, 'spec', 'fixtures', 'files', name))
  30. end