运行测试时出现以下错误
不支持在每个测试生命周期之外使用来自 rspec-mocks 的双精度数或部分双精度数。
describe 'foo_bar'
require 'sidekiq/testing'
around(:example) do |example|
allow_any_instance_of(FooRunner).to receive(:next_tick)
Sidekiq::Testing.inline! do
example.run
end
end
it ' ....' do
end
end
我该如何解决这个问题?