Sha256: d1c9efc0b9ee4da38be330ac7140bf81fcb017f975a756deeab501984fa04f3d
Contents?: true
Size: 1.73 KB
Versions: 7
Compression:
Stored size: 1.73 KB
Contents
require 'spec_helper' require 'email_spec' describe Spree::CartonMailer do include EmailSpec::Helpers include EmailSpec::Matchers let(:carton) { create(:carton) } let(:order) { carton.orders.first } # Regression test for https://github.com/spree/spree/issues/2196 it "doesn't include out of stock in the email body" do shipment_email = Spree::CartonMailer.shipped_email(order: order, carton: carton) expect(shipment_email.body).not_to include(%Q{Out of Stock}) expect(shipment_email.body).to include(%Q{Your order has been shipped}) expect(shipment_email.subject).to eq "#{order.store.name} Shipment Notification ##{order.number}" end context "deprecated signature" do it do ActiveSupport::Deprecation.silence do mail = Spree::CartonMailer.shipped_email(carton.id) expect(mail.subject).to include "Shipment Notification" end end end context "with resend option" do subject do Spree::CartonMailer.shipped_email(order: order, carton: carton, resend: true).subject end it { is_expected.to match /^\[RESEND\] / } end context "emails must be translatable" do context "shipped_email" do context "pt-BR locale" do before do pt_br_shipped_email = { :spree => { :shipment_mailer => { :shipped_email => { :dear_customer => 'Caro Cliente,' } } } } I18n.backend.store_translations :'pt-BR', pt_br_shipped_email I18n.locale = :'pt-BR' end after do I18n.locale = I18n.default_locale end specify do shipped_email = Spree::CartonMailer.shipped_email(order: order, carton: carton) expect(shipped_email.body).to include("Caro Cliente,") end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems