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

11 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