mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 14:45:02 +08:00
7 lines
155 B
Ruby
7 lines
155 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
Fabricator(:form_template) do
|
||
|
name { sequence(:name) { |i| "template_#{i}" } }
|
||
|
template "some yaml template: value"
|
||
|
end
|