Asserts that the order shipment and pick up emails have the distributors email as reply to address

This commit is contained in:
filipefurtad0
2025-03-26 09:54:04 +00:00
parent 98cba128e0
commit df3cbe84b6

View File

@@ -55,4 +55,14 @@ RSpec.describe Spree::ShipmentMailer do
shipment_email = Spree::ShipmentMailer.shipped_email(shipment, delivery: false)
expect(shipment_email.subject).to include("#{distributor.name} Pick up Notification")
end
it "picked_up email has as the reply to email as the distributor" do
shipment_email = Spree::ShipmentMailer.shipped_email(shipment, delivery: false)
expect(shipment_email.reply_to).to eq([distributor.contact.email])
end
it "shipment_email email has as the reply to email as the distributor" do
shipment_email = Spree::ShipmentMailer.shipped_email(shipment, delivery: true)
expect(shipment_email.reply_to).to eq([distributor.contact.email])
end
end