5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-28 00:36:07 +00:00
panel/test/factories/design.rb
2019-07-17 19:18:48 -03:00

13 lines
264 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :design do
name { SecureRandom.hex }
description { SecureRandom.hex }
license { SecureRandom.hex }
gem { SecureRandom.hex }
url { SecureRandom.hex }
disabled { false }
end
end