summaryrefslogtreecommitdiff
path: root/spec/services/keys/destroy_service_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/services/keys/destroy_service_spec.rb')
-rw-r--r--spec/services/keys/destroy_service_spec.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/spec/services/keys/destroy_service_spec.rb b/spec/services/keys/destroy_service_spec.rb
new file mode 100644
index 00000000000..28ac72ddd42
--- /dev/null
+++ b/spec/services/keys/destroy_service_spec.rb
@@ -0,0 +1,13 @@
+require 'spec_helper'
+
+describe Keys::DestroyService do
+ let(:user) { create(:user) }
+
+ subject { described_class.new(user) }
+
+ it 'destroys a key' do
+ key = create(:key)
+
+ expect { subject.execute(key) }.to change(Key, :count).by(-1)
+ end
+end