12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- ENV['RAILS_ENV'] = 'test'
- require File.expand_path('../../config/environment', __FILE__)
- require 'rails/test_help'
- require 'cache'
- require 'simplecov'
- require 'simplecov-rcov'
- class ActiveSupport::TestCase
- # Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
- #
- # Note: You'll currently still have to declare fixtures explicitly in integration tests
- # -- they do not yet inherit this setting
- SimpleCov.formatter = SimpleCov::Formatter::RcovFormatter
- SimpleCov.start
- fixtures :all
- # disable transactions
- self.use_transactional_fixtures = false
- # clear cache
- Cache.clear
- # load seeds
- load "#{Rails.root}/db/seeds.rb"
- load "#{Rails.root}/test/fixtures/seeds.rb"
- # proccess background jobs
- Delayed::Worker.new.work_off
- # set system mode to done / to activate
- Setting.set('system_init_done', true)
- def setup
- # clear cache
- Cache.clear
- # set current user
- UserInfo.current_user_id = nil
- end
- # cleanup jobs
- def teardown
- # check if jobs are proccessed
- return if Delayed::Job.all.empty?
- Delayed::Job.where('failed_at != NULL').each {|job|
- assert( false, "not processable job #{job.inspect}" )
- }
- Delayed::Job.all.destroy_all
- end
- # Add more helper methods to be used by all tests here...
- end
|