dawarich/spec/factories/users.rb

16 lines
233 B
Ruby
Raw Normal View History

2024-07-19 14:37:57 -04:00
# frozen_string_literal: true
FactoryBot.define do
2022-10-13 06:00:39 -04:00
factory :user do
sequence :email do |n|
"user#{n}@example.com"
end
password { SecureRandom.hex(8) }
2024-07-19 14:37:57 -04:00
trait :admin do
admin { true }
end
end
end