Testing Sidekiq workers using Rspec
问题 How do i test the following line of code invokes 'perform' in 5 mins using rspec? CustomSidekiqWorker.perform_in(5.minutes, parameter1) 回答1: If you've set Sidekiq to use inline processing while runnings tests like so: require 'sidekiq/testing' Sidekiq::Testing.inline! Then the following should work in your specs: expect(CustomSideWorker).to receive(:perform_in).with(5.minutes, parameter1) 来源: https://stackoverflow.com/questions/27899120/testing-sidekiq-workers-using-rspec