Sha256: 46556044001066af9bc053cda9ff32a112af1979d46d15f5ec4794fe63622284
Contents?: true
Size: 1.49 KB
Versions: 5
Compression:
Stored size: 1.49 KB
Contents
require 'spec_helper' require 'email_spec' describe Spree::ReimbursementMailer, type: :mailer do include EmailSpec::Helpers include EmailSpec::Matchers let(:reimbursement) { create(:reimbursement) } context ":from not set explicitly" do it "falls back to spree config" do message = Spree::ReimbursementMailer.reimbursement_email(reimbursement) expect(message.from).to eq [Spree::Store.current.mail_from_address] end end it "accepts a reimbursement id as an alternative to a Reimbursement object" do expect(Spree::Reimbursement).to receive(:find).with(reimbursement.id).and_return(reimbursement) expect { Spree::ReimbursementMailer.reimbursement_email(reimbursement.id).body }.not_to raise_error end context "emails must be translatable" do context "reimbursement_email" do context "pt-BR locale" do before do I18n.enforce_available_locales = false pt_br_shipped_email = { spree: { reimbursement_mailer: { reimbursement_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 I18n.enforce_available_locales = true end specify do reimbursement_email = Spree::ReimbursementMailer.reimbursement_email(reimbursement) expect(reimbursement_email.body).to include("Caro Cliente,") end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems