dawarich/spec/factories/users.rb
2024-07-19 20:37:57 +02:00

15 lines
233 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :user do
sequence :email do |n|
"user#{n}@example.com"
end
password { SecureRandom.hex(8) }
trait :admin do
admin { true }
end
end
end