mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 23:41:43 +00:00
10 lines
233 B
Ruby
10 lines
233 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :usuarie do
|
|
email { SecureRandom.hex + '@sutty.nl' }
|
|
password { SecureRandom.hex }
|
|
confirmed_at { Date.today }
|
|
lang { I18n.default_locale.to_s }
|
|
end
|
|
end
|