mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 23:31:41 +00:00
12 lines
264 B
Ruby
12 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
|