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

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

FactoryBot.define do
  factory :protected_branch_merge_access_level, class: 'ProtectedBranch::MergeAccessLevel' do
    protected_branch
    access_level { Gitlab::Access::DEVELOPER }
  end
end