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: 7017b0ee9e785e8b4b8d053a26be70e0a317b047 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

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