Case Taintor
Case Taintor
Yup. You should be able to do the following in a unit test: 1. Verify there are no delayed jobs already in the db: assert_equal 0, Delayed::Job.count 2. Make a...
I did this in my `config/logstasher.rb` ``` ::ActiveSupport::LogSubscriber.log_subscribers.each do |subscriber| case subscriber.class.name when 'LogStasher::ActionView::LogSubscriber' LogStasher.unsubscribe(:action_view, subscriber) when 'LogStasher::ActiveRecord::LogSubscriber' LogStasher.unsubscribe(:active_record, subscriber) end end ``` Also a good idea due to #93