2019-07-25 01:11:48 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-12-13 19:13:44 -05:00
|
|
|
FactoryBot.define do
|
2016-06-06 00:38:42 -04:00
|
|
|
factory :u2f_registration do
|
|
|
|
certificate { FFaker::BaconIpsum.characters(728) }
|
|
|
|
key_handle { FFaker::BaconIpsum.characters(86) }
|
|
|
|
public_key { FFaker::BaconIpsum.characters(88) }
|
2019-10-01 20:06:26 -04:00
|
|
|
counter { 0 }
|
2016-06-06 00:38:42 -04:00
|
|
|
end
|
|
|
|
end
|