mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 04:21:41 +00:00
10 lines
195 B
Ruby
10 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
|