mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 04:31:41 +00:00
8 lines
111 B
Ruby
8 lines
111 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
FactoryBot.define do
|
||
|
factory :site do
|
||
|
name { SecureRandom.hex }
|
||
|
end
|
||
|
end
|