Sha256: f0ea7485e44dd57ee619aa1fa59ccb460935fc5f4a0e4a3ba830ccd6ad488fba
Contents?: true
Size: 1.35 KB
Versions: 7
Compression:
Stored size: 1.35 KB
Contents
require 'rails_helper' RSpec.describe Cmor::Contact::ContactRequestMailer, type: :mailer do describe "notify" do ATTRIBUTES = Cmor::Contact::ContactRequest.attribute_names let(:contact_request) { create(:cmor_contact_contact_request) } let(:recipients) { Cmor::Contact::Configuration.recipients.call(Rails.env) } let(:mail_subject) { "[Dummy] Neue Kontaktanfrage" } subject { described_class.notify(contact_request) } it { expect(subject.to).to eq(recipients) } it { expect(subject.subject).to eq(mail_subject) } ATTRIBUTES.each do |attribute| it { expect(subject.body.encoded).to include(contact_request.class.human_attribute_name(attribute)) } it { expect(subject.body.encoded).to include(contact_request.send(attribute).to_s) } end context 'with Configuration.sender defaults' do let(:sender) { [contact_request.email] } it { expect(subject.from).to eq(sender) } end context 'with configured Configuration.sender' do let(:sender) { "contact@example.com" } around(:each) do |example| original_sender = Cmor::Contact::Configuration.sender Cmor::Contact::Configuration.sender = ->(contact_request) { sender } example.run Cmor::Contact::Configuration.sender = original_sender end it { expect(subject.from).to eq([sender]) } end end end
Version data entries
7 entries across 7 versions & 1 rubygems