debian-mirror-gitlab/spec/services/keys/destroy_service_spec.rb
2021-09-30 23:02:18 +05:30

16 lines
300 B
Ruby

# 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(:personal_key)
expect { subject.execute(key) }.to change(Key, :count).by(-1)
end
end