summaryrefslogtreecommitdiff
path: root/spec/factories/protected_branches/merge_access_levels.rb
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