Welcome to mirror list, hosted at ThFree Co, Russian Federation.

group_deploy_tokens.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ec7d0701be3a9daeaadfa4772b9b830eff6eef0 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

FactoryBot.define do
  factory :group_deploy_token do
    group
    deploy_token
  end
end