diaspora/spec/workers/reset_password_spec.rb
2021-10-25 01:58:47 +02:00

19 lines
625 B
Ruby

# frozen_string_literal: true
describe Workers::ResetPassword do
describe "#perform" do
it "given a user id it sends the reset password instructions for that user" do
expect {
Workers::ResetPassword.new.perform(alice.id)
}.to change(Devise.mailer.deliveries, :length).by(1)
end
it "correctly sets the message parameters" do
Workers::ResetPassword.new.perform(alice.id)
mail = Devise.mailer.deliveries.last
expect(mail.to).to eq([alice.email])
expect(mail.body).to include("change your password")
expect(mail.body).to include(alice.username)
end
end
end