summaryrefslogtreecommitdiff
path: root/spec/factories/protected_branches/push_access_levels.rb
blob: fa3a35fe28218a3f1dd4f0e1f490ed949b512e39 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

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