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

11 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