5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-02 18:56:07 +00:00
panel/test/factories/usuarie.rb

11 lines
233 B
Ruby
Raw Permalink Normal View History

2019-07-11 19:00:28 +00:00
# frozen_string_literal: true
FactoryBot.define do
factory :usuarie do
email { SecureRandom.hex + '@sutty.nl' }
password { SecureRandom.hex }
confirmed_at { Date.today }
2019-08-13 23:33:57 +00:00
lang { I18n.default_locale.to_s }
2019-07-11 19:00:28 +00:00
end
end