Welcome to mirror list, hosted at ThFree Co, Russian Federation.

destroy_service_spec.rb « emails « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3204fac3dfbf120338406594f6b8898ae5c62ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'spec_helper'

describe Emails::DestroyService do
  let!(:user) { create(:user) }
  let!(:email) { create(:email, user: user) }

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

  describe '#execute' do
    it 'removes an email' do
      expect { service.execute(email) }.to change { user.emails.count }.by(-1)
    end
  end
end