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

13 lines
264 B
Ruby
Raw Normal View History

2019-07-17 22:18:48 +00:00
# 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