mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 17:26:21 +00:00
9 lines
195 B
Ruby
9 lines
195 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :usuarie do
|
|
email { SecureRandom.hex + '@sutty.nl' }
|
|
password { SecureRandom.hex }
|
|
confirmed_at { Date.today }
|
|
end
|
|
end
|