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