summaryrefslogtreecommitdiff
path: root/spec/services/keys/destroy_service_spec.rb
blob: ca4bbd50c036ec3532ff4f22b943a7b01523e002 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

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