18 lines
574 B
Ruby
18 lines
574 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")
|
|
end
|
|
end
|
|
end
|