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: df92b0795814e9a8e58c82353a2b66a29974a623 (plain)
1
2
3
4
5
6
7
8
FactoryGirl.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