summaryrefslogtreecommitdiff
path: root/spec/services/groups/deploy_tokens/create_service_spec.rb
blob: 0c28075f998ff6a057bfee861d8b95831689df73 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Groups::DeployTokens::CreateService do
  it_behaves_like 'a deploy token creation service' do
    let(:entity) { create(:group) }
    let(:deploy_token_class) { GroupDeployToken }
  end
end