0c0c2ecd99
# Conflicts: # app/controllers/admin/users_controller.rb # app/controllers/confirmations_controller.rb # app/controllers/profiles/emails_controller.rb # app/models/user.rb # app/services/emails/base_service.rb # app/services/emails/destroy_service.rb # app/views/devise/mailer/confirmation_instructions.html.haml # lib/api/users.rb # spec/services/emails/destroy_service_spec.rb
14 lines
351 B
Ruby
14 lines
351 B
Ruby
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
|