5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-04 22:35:46 +00:00
panel/test/factories/usuarie.rb

10 lines
195 B
Ruby
Raw 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 }
end
end