gitlab-org--gitlab-foss/spec/factories/u2f_registrations.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
282 B
Ruby
Raw Normal View History

# frozen_string_literal: true
FactoryBot.define do
factory :u2f_registration do
user
certificate { FFaker::BaconIpsum.characters(728) }
key_handle { FFaker::BaconIpsum.characters(86) }
public_key { FFaker::BaconIpsum.characters(88) }
counter { 0 }
end
end