94bb660460
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
12 lines
179 B
Ruby
12 lines
179 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :deploy_keys_project do
|
|
deploy_key
|
|
project
|
|
|
|
trait :write_access do
|
|
can_push true
|
|
end
|
|
end
|
|
end
|