We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given this situation:
# config/initializers/sidekiq.rb file Sidekiq::Throttled::Registry.add( :my_throttle, concurrency: { limit: 50 } ) # app/jobs/my_job.rb file class MyJob include Sidekiq::Worker include Sidekiq::Throttled::Worker sidekiq_throttle_as :my_throttle end
How can I write tests in Rspec that assures:
I've tried some things but still no luck. Any help will be useful.
Related #62
The text was updated successfully, but these errors were encountered:
Re:
We will need to add rspec matchers to simplify this task.
I don't see a feasible way for such testing
Sorry, something went wrong.
No branches or pull requests
Given this situation:
How can I write tests in Rspec that assures:
I've tried some things but still no luck.
Any help will be useful.
Related #62
The text was updated successfully, but these errors were encountered: