We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5da6e2a commit f685b44Copy full SHA for f685b44
lib/rspec/rails/matchers/active_job.rb
@@ -242,8 +242,8 @@ def matches?(job)
242
# }.to have_enqueued_job.with(42).on_queue("low").at(:no_wait)
243
#
244
# expect {
245
- # HelloJob.perform_later('rspec_rails', %w[ world rspec rails ], 42)
246
- # }.to have_enqueued_job.with { |_from, to, times|
+ # HelloJob.perform_later('rspec_rails', 'rails', 42)
+ # }.to have_enqueued_job.with { |from, to, times|
247
# # Perform more complex argument matching using dynamic arguments
248
# expect(from).to include "_#{to}"
249
# }
0 commit comments