5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-09-28 12:06:57 +00:00
panel/test/factories/usuarie.rb
2019-08-13 20:52:05 -03:00

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