5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 21:46:22 +00:00
panel/test/factories/layout.rb

20 lines
200 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
FactoryBot.define do
factory :layout do
name do
SecureRandom.hex
end
site
meta do
{}
end
metadata do
{}
end
end
end