summaryrefslogtreecommitdiff
path: root/spec/services/emails/confirm_service_spec.rb
blob: d3a745bc744d7061244af3fe3624553b637af628 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Emails::ConfirmService do
  let(:user) { create(:user) }

  subject(:service) { described_class.new(user) }

  describe '#execute' do
    it 'enqueues a background job to send confirmation email again' do
      email = user.emails.create!(email: 'new@email.com')

      expect { service.execute(email) }.to have_enqueued_job.on_queue('mailers')
    end
  end
end