mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-05 05:30:44 +08:00
7 lines
154 B
Ruby
7 lines
154 B
Ruby
# frozen_string_literal: true
|
|
|
|
Fabricator(:form_template) do
|
|
name { sequence(:name) { |i| "template_#{i}" } }
|
|
template "- type: input
|
|
id: name"
|
|
end
|