mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-02 21:20:08 +08:00
9 lines
169 B
Ruby
9 lines
169 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :user_identity do
|
|
user
|
|
uid Faker::Crypto.unique.sha1
|
|
provider Faker::App.unique.name
|
|
end
|
|
end
|