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

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

FactoryBot.define do
  factory :group_deploy_keys_group do
    group_deploy_key
    group
    can_push { true }
  end
end