summaryrefslogtreecommitdiff
path: root/spec/services/emails/destroy_service_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/services/emails/destroy_service_spec.rb')
-rw-r--r--spec/services/emails/destroy_service_spec.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/spec/services/emails/destroy_service_spec.rb b/spec/services/emails/destroy_service_spec.rb
index 5abe8da2529..9e14a13aa4f 100644
--- a/spec/services/emails/destroy_service_spec.rb
+++ b/spec/services/emails/destroy_service_spec.rb
@@ -10,7 +10,10 @@ describe Emails::DestroyService do
describe '#execute' do
it 'removes an email' do
- expect { service.execute(email) }.to change { user.emails.count }.by(-1)
+ response = service.execute(email)
+
+ expect(user.emails).not_to include(email)
+ expect(response).to be true
end
end
end