Sha256: 55f4e5e1004313dcd9aa2363d5beca88b22956911368dc0ac3d9300474ab4b81
Contents?: true
Size: 1.48 KB
Versions: 48
Compression:
Stored size: 1.48 KB
Contents
# frozen_string_literal: true require 'rails_helper' RSpec.describe Spree::CartonMailer do 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.parts.first.body).not_to include(%{Out of Stock}) expect(shipment_email.parts.first.body).to include(%{Your order has been shipped}) expect(shipment_email.subject).to eq "#{order.store.name} Shipment Notification ##{order.number}" 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.parts.first.body).to include("Caro Cliente,") end end end end end
Version data entries
48 entries across 48 versions & 2 rubygems