5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-30 10:36:09 +00:00
panel/test/factories/licencia.rb

12 lines
242 B
Ruby
Raw Permalink Normal View History

2019-07-19 22:37:53 +00:00
# frozen_string_literal: true
FactoryBot.define do
factory :licencia do
name { SecureRandom.hex }
description { SecureRandom.hex }
url { SecureRandom.hex }
deed { SecureRandom.hex }
2019-07-20 00:33:10 +00:00
icons { '/images/by.png' }
2019-07-19 22:37:53 +00:00
end
end