5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-28 00:06:07 +00:00
panel/test/factories/licencia.rb
2019-07-19 21:34:14 -03:00

12 lines
242 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :licencia do
name { SecureRandom.hex }
description { SecureRandom.hex }
url { SecureRandom.hex }
deed { SecureRandom.hex }
icons { '/images/by.png' }
end
end