summaryrefslogtreecommitdiff
path: root/spec/factories/u2f_registrations.rb
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