Sha256: 318522cf6eabf3677dd8397740e3bae6a1839388e5b55ec473838246eba81295

Contents?: true

Size: 1.13 KB

Versions: 3

Compression:

Stored size: 1.13 KB

Contents

RSpec.describe Spree::UserMailer, type: :mailer do
  let(:user) { create(:user) }
  let(:store) { Spree::Store.default }

  describe '#reset_password_instructions' do
    describe 'message contents' do
      before do
        @message = described_class.reset_password_instructions(user, 'token goes here')
      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_now
        }.to change(ActionMailer::Base.deliveries, :size).by(1)
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
spree_auth_devise-4.1.1 spec/mailers/user_mailer_spec.rb
spree_auth_devise-4.1.0 spec/mailers/user_mailer_spec.rb
spree_auth_devise-4.1.0.rc1 spec/mailers/user_mailer_spec.rb