RubyFlow The Ruby and Rails community linklog

How to test if ActiveJob job was enqueued in Rails RSpec

https://blog.eq8.eu/til/how-to-test-if-activejob-job-was-enqueued-in-rails-rspec.html

  it 'should enqueue MyJob ' do
    post :some_action

    expect(MyJob)
      .to have_been_enqueued
      .with(current_user_id: user.id)
  end

more here

Post a comment

You can use basic HTML markup (e.g. <a>) or Markdown.

As you are not logged in, you will be
directed via GitHub to signup or sign in