summaryrefslogtreecommitdiff
path: root/spec/factories/webauthn_registrations.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/factories/webauthn_registrations.rb')
-rw-r--r--spec/factories/webauthn_registrations.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/factories/webauthn_registrations.rb b/spec/factories/webauthn_registrations.rb
new file mode 100644
index 00000000000..ac803885244
--- /dev/null
+++ b/spec/factories/webauthn_registrations.rb
@@ -0,0 +1,11 @@
+# frozen_string_literal: true
+
+FactoryBot.define do
+ factory :webauthn_registration do
+ credential_xid { SecureRandom.base64(88) }
+ public_key { SecureRandom.base64(103) }
+ name { FFaker::BaconIpsum.characters(10) }
+ counter { 1 }
+ user
+ end
+end