How can I check the content of a bounced email?
require "rails_helper"
RSpec.describe EventsMailbox do
it "requires a current user" do
expect(mail_processed).to have_bounced
# here I would like to check the content of the bounced email
end
def mail
Mail.new(
from: "[email protected]",
subject: "Some subject",
body: "Some body"
)
end
def mail_processed
@mail_processed ||= process(mail)
end
end
Here is how I did it, the key was that
perform_enqueued_jobs
that allows emails to be retrieved fromActionMailer::Base.deliveries
: