14 lines
261 B
Ruby
14 lines
261 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :service_account do
|
|
user { FactoryBot.create(:user) }
|
|
email { Faker::Internet.email }
|
|
uid { UIDGenerator.generate("SI") }
|
|
|
|
trait :without_user do
|
|
user { nil }
|
|
end
|
|
end
|
|
end
|