mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 02:11:42 +00:00
13 lines
264 B
Ruby
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
|