94bb660460
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
14 lines
297 B
Ruby
14 lines
297 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative '../support/helpers/gpg_helpers'
|
|
|
|
FactoryBot.define do
|
|
factory :gpg_key do
|
|
key { GpgHelpers::User1.public_key }
|
|
user
|
|
|
|
factory :gpg_key_with_subkeys do
|
|
key { GpgHelpers::User1.public_key_with_extra_signing_key }
|
|
end
|
|
end
|
|
end
|