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

require 'spec_helper'

RSpec.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