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

require 'spec_helper'

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