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

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