mirror of
https://github.com/discourse/discourse.git
synced 2024-12-01 08:03:38 +08:00
9 lines
227 B
Ruby
9 lines
227 B
Ruby
|
Fabricator(:site_content) do
|
||
|
content_type 'great.poem'
|
||
|
content "%{flower} are red. %{food} are blue."
|
||
|
end
|
||
|
|
||
|
Fabricator(:site_content_basic, from: :site_content) do
|
||
|
content_type 'breaking.bad'
|
||
|
content "best show ever"
|
||
|
end
|