2018-03-29 05:47:54 -04:00
|
|
|
require_relative '../support/helpers/gpg_helpers'
|
2017-02-22 09:37:49 -05:00
|
|
|
|
2017-12-13 19:13:44 -05:00
|
|
|
FactoryBot.define do
|
2017-02-22 09:37:49 -05:00
|
|
|
factory :gpg_key do
|
2017-02-23 06:02:36 -05:00
|
|
|
key GpgHelpers::User1.public_key
|
2017-02-28 04:49:59 -05:00
|
|
|
user
|
2017-09-28 14:26:16 -04:00
|
|
|
|
|
|
|
factory :gpg_key_with_subkeys do
|
|
|
|
key GpgHelpers::User1.public_key_with_extra_signing_key
|
|
|
|
end
|
2017-02-22 09:37:49 -05:00
|
|
|
end
|
|
|
|
end
|