To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorhave_enqueued_mail matcher
The have_enqueued_mail
(also aliased as enqueue_mail
) matcher is used to check if given mailer was enqueued.
- Background
-
- Given
- active job is available
- Scenarios
-
- Checking mailer class and method name
-
- Given
-
a file named "spec/mailers/user_mailer_spec.rb" with:
require "rails_helper" RSpec.describe NotificationsMailer do it "matches with enqueued mailer" do ActiveJob::Base.queue_adapter = :test expect { NotificationsMailer.signup.deliver_later }.to have_enqueued_mail(NotificationsMailer, :signup) end end
- When
-
I run
rspec spec/mailers/user_mailer_spec.rb
- Then
- the examples should all pass
- Checking mailer enqueued time
-
- Given
-
a file named "spec/mailers/user_mailer_spec.rb" with:
require "rails_helper" RSpec.describe NotificationsMailer do it "matches with enqueued mailer" do ActiveJob::Base.queue_adapter = :test expect { NotificationsMailer.signup.deliver_later(wait_until: Date.tomorrow.noon) }.to have_enqueued_mail.at(Date.tomorrow.noon) end end
- When
-
I run
rspec spec/mailers/user_mailer_spec.rb
- Then
- the examples should all pass
Last published 9 months ago by Jon Rowe.