Sha256: 439803979a76c6143a69e0afc11c30e0294684bb3fde508adeb79879a7ed40d1

Contents?: true

Size: 1.34 KB

Versions: 2

Compression:

Stored size: 1.34 KB

Contents

RSpec.describe Spree::UserMailer, type: :mailer do

  let!(:store) { create(:store) }
  let(:user) { create(:user) }

  before do
    user = create(:user)
    Spree::UserMailer.reset_password_instructions(user, 'token goes here').deliver
    @message = ActionMailer::Base.deliveries.last
  end

  describe '#reset_password_instructions' do
    describe 'message contents' do
      before do
        described_class.reset_password_instructions(user, 'token goes here').deliver
        @message = ActionMailer::Base.deliveries.last
      end

      context 'subject includes' do
        it 'translated devise instructions' do
          expect(@message.subject).to include(
            I18n.t(:subject, scope: [:devise, :mailer, :reset_password_instructions])
          )
        end

        it 'Spree site name' do
          expect(@message.subject).to include store.name
        end
      end

      context 'body includes' do
        it 'password reset url' do
          expect(@message.body.raw_source).to include "http://#{store.url}/user/spree_user/password/edit"
        end
      end
    end

    describe 'legacy support for User object' do
      it 'sends an email' do
        expect {
          described_class.reset_password_instructions(user, 'token goes here').deliver
        }.to change(ActionMailer::Base.deliveries, :size).by(1)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
solidus_auth_devise-1.1.0 spec/mailers/user_mailer_spec.rb
solidus_auth_devise-1.0.0 spec/mailers/user_mailer_spec.rb