Welcome to mirror list, hosted at ThFree Co, Russian Federation.

u2f_registrations.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26090b08966c80b7e1bf2856716b3e220baed55d (plain)
1
2
3
4
5
6
7
8
FactoryBot.define do
  factory :u2f_registration do
    certificate { FFaker::BaconIpsum.characters(728) }
    key_handle { FFaker::BaconIpsum.characters(86) }
    public_key { FFaker::BaconIpsum.characters(88) }
    counter 0
  end
end